Update a Run Profile
Updates a run profile's name, batch size, partition, or file path. All fields are optional; only include the fields you want to change. The run type cannot be changed after creation.
PUT /api/v1/synchronisation/connected-systems/{connectedSystemId}/run-profiles/{runProfileId}
Path Parameters
| Parameter |
Type |
Description |
connectedSystemId |
integer |
ID of the connected system |
runProfileId |
integer |
ID of the run profile |
Request Body
| Parameter |
Type |
Required |
Description |
name |
string |
No |
Display name (1-200 characters) |
pageSize |
integer |
No |
Objects per batch (1-10000) |
partitionId |
integer |
No |
Target partition ID |
filePath |
string |
No |
File path for file-based connectors (max 500 characters) |
Examples
Response
Returns 200 OK with the updated Run Profile object.
Errors
| Status |
Code |
Description |
400 |
VALIDATION_ERROR |
Invalid fields (e.g. name too long, page size out of range) |
401 |
UNAUTHORISED |
Authentication required |
403 |
FORBIDDEN |
Insufficient permissions (Administrator role required) |
404 |
NOT_FOUND |
Connected system or run profile does not exist |