# Delete Endpoint - GetConflictById

Deletes synchronization conflict with provided id.

# HTTP Request

One of the following requests should be made:

DELETE /odata/syncconflicts({key})
DELETE /odata/syncconflicts/{key}

# Path parameters

Name Description
key required. Id of synchronization conflict that should be deleted.

# Query parameters

Name Description
repository optional. Destination repository key.

# Request headers

Name Description
Authorization required. Bearer {token}. See authorization

# Responses

Code Description Type
200 True if deletion was successful otherwise false. boolean
400 Request contains invalid data.
404 If no synchronization conflict with the provided id could be found.
500 When an internal server occurs during the deletion of synchronization conflict.

# Example

# Request

The following is an example of how to call the endpoint:

DELETE /odata/syncconflicts(1)?repository=repo1

# Response

The following example shows the response:

Information

The response object is truncated for clarity. Default properties will be returned from the call.

HTTP/1.1 200 OK
Content-Type: application/json

true
Last updated: February 14, 2025 at 8:26 AM