Skip to main content
Skip table of contents

Get account connectors

Call the /v1.0/account/connectors request to retrieve a list of all of the installed connectors in an account. You can use the returned values to tell Cyclr which connector to interact with. For more information about the endpoint, see the Interactive API reference page.

Request

CODE
GET https://{CyclrAPIDomain}/v1.0/account/connectors
Authorization: Bearer {access_token}
X-Cyclr-Account: {accountID}

Request parameters

Parameter

Description

{CyclrAPIDomain}

Replace with the API domain of your version of Cyclr.

Authorization

Give your access token.

X-Cyclr-Account

Give your Cyclr account ID.

For more information on access tokens, see the page on API Authentication.

Example response

CODE
[
    {
        "Id": 123,
        "Name": "Salesforce Account 1",
        "Description": "",
        "Connector": {
            "Id": 1,
            "Name": "Salesforce"
        }
    },
    {
        "Id": 456,
        "Name": "Salesforce Account 2",
        "Description": "",
        "Connector": {
            "Id": 1,
            "Name": "Salesforce"
        }
    }
]

Response parameters

Parameter

Description

Id

The ID of your account connector.

Name

The account connector name.

Description

The account connector description.

Connector.Id

The ID of the underlying Cyclr connector.

Connector.Name

The name of the underlying Cyclr connector.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.