TAG LINE
TAG LINE
SMALL TITLE
This entity allows you to retrieve data based on different custom data source views that have been created in the platform.
| GET | CustomDataSource/{id} |
| Retrieve an instance of the CustomDataSource object by its ID. | |
| {id} | Unique identifier for the CustomDataSource object. |
Retrieve an instance of the CustomDataSource object by its ID. GET CustomDataSource/{id}HTTP/1.1 200 OK
{
"trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
"instance": {}
} | |
| GET | CustomDataSource/{id}/Metadata |
| Retrieve all of the Metadata objects for the specified CustomDataSource. | |
| {id} | Unique identifier for the CustomDataSource object. |
Retrieve all of the Metadata objects for the specified CustomDataSource. GET CustomDataSource/{id}/MetadataHTTP/1.1 200 OK
{
"trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
"instance": {}
} | |
| GET | CustomDataSource/{id}/Metadata/sql |
| Retrieve all of the Metadata/sql objects for the specified CustomDataSource. | |
| {id} | Unique identifier for the CustomDataSource object. |
Retrieve all of the Metadata/sql objects for the specified CustomDataSource. GET CustomDataSource/{id}/Metadata/sqlHTTP/1.1 200 OK
{
"trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
"instance": {}
} | |
| GET | CustomDataSource/{id}/Paged |
| Retrieve all the data from the Custom Data Source in a paged fashion by specifying the {id} of the data source. | |
| {id} | Unique identifier for the CustomDataSource object. |
Retrieve all the data from the Custom Data Source in a paged fashion by specifying the {id} of the data source. GET CustomDataSource/{id}/PagedHTTP/1.1 200 OK
{
"pagination": {
"pageNumber": 1,
"pageSize": 5000,
"excludeTotalCount": false
},
"pagedResults": {
"totalCount": 3,
"items": [
{
"accountId": 10000000,
"accountName": "Anthem Records",
"parentAccountId": 10000000,
"parentAccountName": "Anthem Records",
"topAccountId": 10000000,
"topAccountName": "Anthem Records"
},
{
"accountId": 10000001,
"accountName": "tbrown",
"parentAccountId": 10000000,
"parentAccountName": "Anthem Records",
"topAccountId": 10000000,
"topAccountName": "Anthem Records"
},
{
"accountId": 10000002,
"accountName": "hsyme",
"parentAccountId": 10000000,
"parentAccountName": "Anthem Records",
"topAccountId": 10000000,
"topAccountName": "Anthem Records"
}
]
}
} | |