List container organizations
2 minute read
GET
Use this endpoint to list all organizations assigned to a container.https://www.digicert.com/services/v2/container/{{container_id}}/order/organization
Example requests and responses
curl -X GET \
https://www.digicert.com/services/v2/container/{{container_id}}/order/organization \
-H 'Content-Type: application/json' \
-H 'X-DC-DEVKEY: {{api_key}}'import requests
url = "https://www.digicert.com/services/v2/container/{{container_id}}/order/organization"
headers = {
'X-DC-DEVKEY': "{{api_key}}",
'Content-Type': "application/json"
}
response = requests.request("GET", url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://www.digicert.com/services/v2/container/{{container_id}}/order/organization"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-DC-DEVKEY", "{{api_key}}")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}var request = require("request");
var options = { method: 'GET',
url: 'https://www.digicert.com/services/v2/container/{{container_id}}/order/organization',
headers:
{ 'Content-Type': 'application/json',
'X-DC-DEVKEY': '{{api_key}}' } };
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});200 OK
{
"organizations": [
{
"id": 112233,
"status": "active",
"name": "Example Organization Inc.",
"assumed_name": "Example Org",
"display_name": "Example Organization",
"is_active": true,
"address": "123 Fake Stree",
"address2": "Floor 55",
"zip": "84043",
"city": "Lehi",
"state": "Utah",
"country": "us",
"telephone": "801-701-9600",
"validations": [
{
"type": "ov",
"name": "OV",
"description": "Normal Organization Validation",
"date_created": "2018-10-09T19:29:02+00:00",
"validated_until": "2019-11-09T20:28:55+00:00",
"status": "active"
}
]
}
]
}
Response parameters
| Name | Type | Description |
|---|---|---|
| organizations | array | List of organizations assigned to the container. |
| .. id | int | Organization ID. |
| .. status | string | Organization status. Possible values: active, inactive |
| .. name | string | Legal name of the organization. |
| .. assumed_name | string | Public name of the organization. Also called doing business as (DBA) name. |
| .. display_name | string | Full name of the organization. Constructed using name + assumed_name. |
| .. is_active | bool | Active status of the container. |
| .. address | string | Address of the organization. |
| .. address2 | string | |
| .. zip | string | Postal code of the organization. |
| .. city | string | City where the organization is located. |
| .. state | string | State where the organization is located. |
| .. country | string | Country where the organization is located. |
| .. telephone | string | Organization telephone number. |
| .. validations | array | Validation types that the organization can use. See Glossary – Validation types. |
Was this page helpful?
Provide feedback