List Run Profiles¶
Returns all run profiles for a connected system.
Path Parameters¶
| Parameter | Type | Description |
|---|---|---|
connectedSystemId |
integer | ID of the connected system |
Examples¶
Response¶
Returns 200 OK with an array of Run Profile objects.
[
{
"id": 1,
"name": "Full Import",
"connectedSystemId": 1,
"runType": "FullImport",
"pageSize": 100,
"partitionName": null,
"filePath": null
},
{
"id": 2,
"name": "Delta Import",
"connectedSystemId": 1,
"runType": "DeltaImport",
"pageSize": 100,
"partitionName": null,
"filePath": null
},
{
"id": 3,
"name": "Delta Sync",
"connectedSystemId": 1,
"runType": "DeltaSynchronisation",
"pageSize": 100,
"partitionName": null,
"filePath": null
},
{
"id": 4,
"name": "Export",
"connectedSystemId": 1,
"runType": "Export",
"pageSize": 100,
"partitionName": null,
"filePath": null
}
]
Errors¶
| Status | Code | Description |
|---|---|---|
401 |
UNAUTHORISED |
Authentication required |
403 |
FORBIDDEN |
Insufficient permissions (Administrator role required) |
404 |
NOT_FOUND |
Connected system does not exist |