Organization and technical contact info

GET https://www.digicert.com/services/v2/organization/{{organization_id}}/contact
Use this endpoint to get details about the organization contact and technical contact associated with an organization.

Example requests and responses

cURL

curl -X GET \
  'https://www.digicert.com/services/v2/organization/{{organization_id}}/contact' \
  -H 'Content-Type: application/json' \
  -H 'X-DC-DEVKEY: {{api_key}}'

200 OK

{
  "organization_contact": {
    "first_name": "John",
    "last_name": "Doe",
    "email": "john.doe@example.com",
    "job_title": "SRE",
    "telephone": "1234567890",
    "telephone_extension": "1234",
    "language_id": "1",
    "name": "John Doe",
    "contact_type": "organization_contact"
  },
  "technical_contact": {
    "first_name": "Jane",
    "last_name": "Doe",
    "email": "jane.doe@example.com",
    "job_title": "SRE",
    "telephone": "1234567890",
    "telephone_extension": "1234",
    "language_id": "1",
    "name": "Jane Doe",
    "contact_type": "technical_contact"
  }
}

Path parameters

NameReq/OptTypeDescription
organization_idrequiredstringOrganization ID.

Response parameters

NameTypeDescription
organization_contactobjectObject with details about the organization contact.
.. first_namestringOrganization contact first name.
.. last_namestringOrganization contact last name.
.. emailstringOrganization contact email address.
.. job_titlestringOrganization contact job title. Omitted if no job title exists for the contact.
.. telephonestringOrganization contact telephone number. Omitted if no telephone number exists for the contact.
.. telephone_extensionstringOrganization contact telephone extension. Omitted if no telephone extension exists for the contact.
.. language_idstringOrganization contact language ID.
Possible values: See Glossary – Locale codes.
.. namestringOrganization contact first and last name.
.. contact_typestringContact type.
technical_contactobjectObject with details about the technical contact. Omitted if no technical contact is associated with the organization.
.. first_namestringTechnical contact first name.
.. last_namestringTechnical contact last name.
.. emailstringTechnical contact email address.
.. job_titlestringTechnical contact job title. Omitted if no job title exists for the contact.
.. telephonestringTechnical contact telephone number. Omitted if no telephone number exists for the contact.
.. telephone_extensionstringTechnical contact telephone extension. Omitted if no telephone extension exists for the contact.
.. language_idstringTechnical contact language ID.
Possible values: See Glossary – Locale codes.
.. namestringTechnical contact first and last name.
.. contact_typestringContact type.