Retrieves a list of organizations whose name contains the specified word or phrase.
Use the Get Organization by ID endpoint to retrieve more detailed information about a specific organization.
This endpoint may return up to 20 organizations. If you reach this limit, try searching for a more specific name.
Retrieve organizations by name through the following request:
HTTP Method | Request URI |
---|---|
GET |
https://api.vdms.io/sec/cps/v2.0/organizations/name/Organization Name |
Define the following variable when submitting the above request:
VariableA variable represents a value that must be replaced. A variable consists of either a URL segment (e.g., "0001" in /0001/) or a query string value (e.g., "3" in mediaTypes=3). | Description |
---|---|
Required |
Replace this variable with the name of the desired organization. The response will return all organizations whose names contain the specified word or phrase. |
This endpointIdentifies a request's connection point to our REST API service. only takes advantage of common request headers.
Unlike requests to api.edgecast.com, requests to our API gateway (api.vdms.io) require an access token (OAuth).
Request body parameters are not required by this endpoint.
The response to the above request includes an HTTP status code, response headers, and a response body.
A status code indicates whether the request was successfully performed.
The response for this endpoint only includes standard HTTP response headers.
The response body for a successful request (200 OK) contains the following response elements:
Name | Data Type | Description |
---|---|---|
@id | String | Indicates the relative path to the requested endpoint. |
@type |
String |
Returns Collection. |
Array |
Contains a list of organizations. |
The items array describes each organization through the following properties:
Name | Data Type | Description |
---|---|---|
city |
String |
Indicates an organization's city. |
company_address |
String |
Indicates an organization's address. |
company_address2 |
String |
Indicates an organization's secondary address information (e.g., suite number). |
company_name |
String |
Indicates an organization's name. |
country |
String |
Indicates an organization's country by its ISO 3166 country code. Use the Get Country Codes endpoint to retrieve a list of countries and their codes. |
id |
Integer |
Indicates an organization's system-defined ID. Digicert CA If you previously purchased an OV or EV certificate directly from Digicert, then it is possible for your organization to only be registered with Digicert. Organizations that have only been registered with Digicert return an ID of 0. Look up your organization by its exact name, as defined within the company_name property, by requesting the Get Organization by ID endpoint with the following query string syntax: ?name=Organization Name
|
state |
String |
Indicates an organization's state or province. |
zip_code |
String |
Indicates an organization's zip code. |
The response body for an unsuccessful request will contain an error response that provides additional information.
A sample JSON request is shown below.
GET https://api.vdms.io/sec/cps/v2.0/organizations/name/widgets HTTP/1.1
Accept: application/json
Content-Type: application/json
Host: api.vdms.io
A sample JSON response is shown below.
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json; charset=utf-8
Date: Thu, 15 Apr 2021 12:00:00 GMT
Content-Length: 571
{ "@id": "/v2.0/organizations/name/widgets", "@type": "Collection", "items": [{ "id": 123, "country": "US", "state": "California", "zip_code": "90094", "city": "Los Angeles", "company_name": "Widgets, Inc.", "company_address": "13031 W Jefferson Blvd", "company_address2": "Blvd #900" }, { "id": 124, "country": "US", "state": "California", "zip_code": "90094", "city": "Los Angeles", "company_name": "Widgets LLC", "company_address": "13031 W Jefferson Blvd", "company_address2": "900" } ] }