patch /connections/{id}/reload
Aborts all reload metadata for a specific connection. This is requested by setting the status field to "aborted".
Aborts all running reload metadata for the connection specified by the id
parameter.
Path parameters
- id (required)
- The ID of the connection.
Request body
- status (required)
- DataConnectionStatusPatch The status patch.
Return type
Example data
Content-Type: application/json
{
"data" : {
"connectionString" : "connectionString",
"created" : "2000-01-23T04:56:07.000+00:00",
"lastUpdate" : "2000-01-23T04:56:07.000+00:00",
"appId" : "appId",
"name" : "name",
"connectionStatus" : "Unknown",
"description" : "description",
"notificationsEnabled" : true,
"cacheStatus" : "NeverGenerated",
"id" : "00000000-0000-0000-0000-000000000000",
"source" : "source"
}
}
Responses
- 200
- Success. The specified connection is returned.
- 400
- The ID of the connection is malformed or the patch body is malformed. Currently, only patching the status to "aborted" is supported.
- 403
- The user is not authorized to reload metadata for this connection.
- 404
- A connection with the specified ID was not found.