Get account connectors
Call the GET /v1.0/account/connectors
endpoint to retrieve a list of the installed Account Connectors in a particular Account. You can then use the data in the Response to identify which Account Connector to work with.
For more information about the endpoint, see the Interactive API reference page.
Example Request
GET https://{CyclrAPIDomain}/v1.0/account/connectors
Authorization: Bearer {access_token}
X-Cyclr-Account: {accountID}
Request Parameters
Parameter | Description |
---|---|
| Replace with the appropriate API domain for your Partner Console. |
| A Cyclr API Access Token. |
| The API ID of the Cyclr Account to work in. |
For more information on access tokens, see the page on API Authentication.
Example Response
[
{
"Id": 123,
"Name": "Salesforce",
"Description": "",
"Connector": {
"Id": 1,
"Name": "Salesforce"
}
},
{
"Id": 456,
"Name": "Salesforce 2",
"Description": "",
"Connector": {
"Id": 1,
"Name": "Salesforce"
}
}
]
Response Explanation
Property | Description |
---|---|
| The unique ID of an Account Connector. |
| The Account Connector’s Name. |
| The Account Connector’s Description. |
| This property contains details of the underlying Connector the Account Connector is using. |
| The unique ID of the Connector Release of the underlying Connector the Account Connector is using. If an Account Connector is upgraded, this value will change to reflect the new Connector Release it’s using. |
| The Name of the underlying Connector the Account Connector is using. |