--- title: "Organization and technical contact info" source_url: https://dev.digicert.com/certcentral-apis/services-api/organizations/organization-and-technical-contact-info.html api_method: GET api_endpoint: "/services/v2/organization/{{organization_id}}/contact" api_url: "https://www.digicert.com/services/v2/organization/{{organization_id}}/contact" --- **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 ```json { "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
| Name | Req/Opt | Type | Description |
|---|---|---|---|
| organization_id | required | string | Organization ID. |
| Name | Type | Description |
|---|---|---|
| organization_contact | object | Object with details about the organization contact. |
| .. first_name | string | Organization contact first name. |
| .. last_name | string | Organization contact last name. |
| string | Organization contact email address. | |
| .. job_title | string | Organization contact job title. Omitted if no job title exists for the contact. |
| .. telephone | string | Organization contact telephone number. Omitted if no telephone number exists for the contact. |
| .. telephone_extension | string | Organization contact telephone extension. Omitted if no telephone extension exists for the contact. |
| .. language_id | string | Organization contact language ID. Possible values: See Glossary – Locale codes. |
| .. name | string | Organization contact first and last name. |
| .. contact_type | string | Contact type. |
| technical_contact | object | Object with details about the technical contact. Omitted if no technical contact is associated with the organization. |
| .. first_name | string | Technical contact first name. |
| .. last_name | string | Technical contact last name. |
| string | Technical contact email address. | |
| .. job_title | string | Technical contact job title. Omitted if no job title exists for the contact. |
| .. telephone | string | Technical contact telephone number. Omitted if no telephone number exists for the contact. |
| .. telephone_extension | string | Technical contact telephone extension. Omitted if no telephone extension exists for the contact. |
| .. language_id | string | Technical contact language ID. Possible values: See Glossary – Locale codes. |
| .. name | string | Technical contact first and last name. |
| .. contact_type | string | Contact type. |