This table aggregates membership for all versions of the Organization object.

Versioned schema members

Any object member specific to a range of versions is indicated in its description, at what version the member was either introduced or removed. Any listed data member with no version number is common to all versions of the object.

MemberTypeDescription
Organization: Information about organization requesting the certificate.
addressString, NullThe address of your organization.
address2String, NullThe address of your organization.
cityString, NullThe city where your organization resides.
countryString, NullThe country where your organization resides.
idNumber, NullThe unique identifier of the organization.
nameString, NullThe name of your organization.
order​CountNumberrequired: The number of certificate orders the organization is associated with.
organization​ContactOrganization.​organization​Contact, NullContact information for the certificate administrator that you want to use as a contact at your company.
phoneString, NullThe phone number of your organization.
postal​CodeString, NullThe postal code of your organization.
regionString, NullThe region of your organization, typically a state or province.
statusEnumeration, NullStatus of the organization.
technical​ContactOrganization.​technical​Contact, NullContact information for an administrator at Akamai.
validationsOrganization.​validations[]required: Validation types.
Organization.organization​Contact: Contact information for the certificate administrator that you want to use as a contact at your company.
emailString, NullThe email address of the administrator who you want to use as a contact at your company.
first​NameString, NullThe first name of the administrator who you want to use as a contact at your company.
last​NameString, NullThe last name of the administrator who you want to use as a contact at your company.
telephoneString, NullThe telephone number of your organization.
Organization.technical​Contact: Contact information for an administrator at Akamai.
emailString, NullThe email address of the technical contact who you want to use within Akamai.
first​NameString, NullThe first name of the technical contact who you want to use within Akamai. This is the person you work closest with at Akamai who can verify the certificate request. This is the person the CA calls if there are any issues with the certificate and they cannot reach the administrator.
last​NameString, NullThe last name of the technical contact who you want to use within Akamai.
telephoneString, NullThe phone number of the technical contact who you want to use within Akamai.
Organization.validations[]: Validation types.
date​CreatedString, NullThe date when the organization record was created.
descriptionString, NullDescription of the validation type.
nameString, NullName of the validation type.
statusEnumeration, NullStatus of validation.
typeEnumeration, NullThe validation type.
validated​UntilString, NullThe date until which when the organization validation remains valid.

Sample v1 object

{
    "address": "1000 Broadway",
    "address2": null,
    "city": "Cambridge",
    "country": "us",
    "id": 688800,
    "name": "Newco Technologies, Inc.",
    "orderCount": 33,
    "organizationContact": {
        "email": "john.brown@gmail.com",
        "firstName": "John",
        "lastName": "Brown",
        "telephone": "16175556666"
    },
    "phone": "+16174440000",
    "postalCode": "02142",
    "region": "Massachusetts",
    "status": "active",
    "technicalContact": {
        "email": "hperson@akamai.com",
        "firstName": "Helpful",
        "lastName": "Person",
        "telephone": "8577111222"
    },
    "validations": [
        {
            "dateCreated": "2020-12-09T20:37:07Z",
            "description": "Extended Organization Validation (EV)",
            "name": "EV",
            "status": "active",
            "type": "ev",
            "validatedUntil": "2021-08-17T06:00:00Z"
        },
        {
            "dateCreated": "2020-12-05T09:47:57Z",
            "description": "Normal Organization Validation",
            "name": "OV",
            "status": "active",
            "type": "ov",
            "validatedUntil": "2021-09-17T06:00:00Z"
        }
    ]
}