Marketplace Organizations

This API enables managing Digital Letter of Authorization (LOA) documents.

For more information, see Digital Letter of Authorization - Overview.

Get Possible Partner Organizations

GET /diloa/v1/organizations
Method GET
Endpoint /diloa/v1/organizations
Headers Authorization
Path Parameters Not applicable
Query Parameters ibx
Body Parameters Not applicable

This API request returns a list of organizations present in the specified IBX data center.

To obtain the Access Token, refer to Requesting Access and Refresh tokens under the Getting Access Token section.


Sample curl request

Copy
curl -X
GET "https://api.equinix.com/diloa/v1/organizations?ibx=AM11"
-H "Authorization: Bearer qwErtY8zyW1abcdefGHI"

Query parameters

Parameter
Description
ibx string
REQUIRED
IBX data center identifier.
Example: AM11

Sample response

Copy
[
    {
        "orgIds": [
            "81918"
        ],
        "name": "Michael Scott Paper Company"
    },
    {
        "orgIds": [
            "9769",
            "10947",
            "11070",
            "69273",
            "78488"
        ],
        "name": "Dunder Mifflin Inc."
    },
    {
        "orgIds": [
            "24254"
        ],
        "name": "Serenity by Jan"
    }
]

Response payload body description

Parameter
Description
orgIds array[string] Identifiers of organizations that belong to the same root customer organization.
Example: 7436
name string Name of the organization.
Example: XYZ Inc.