delete connection
DELETE Connection
This endpoint is used to delete a connection between two users in the system. The request targets a specific connection identified by the initiatorUserId and targetUserId.
Request Format
-
Method: DELETE
-
URL:
{{API_BASE_URL}}/byndr/v1/users/:initiatorUserId/connections/:targetUserid
Request Body
This DELETE request does not require a request body.
Response Format
Upon successful deletion of the connection, the server will return a response indicating the success of the operation. The response typically includes a status code and a message confirming the deletion.
Expected Response Codes
-
204 No Content: Indicates that the connection was successfully deleted.
-
404 Not Found: Indicates that the specified connection does not exist.
Ensure that the user IDs provided in the URL are valid to avoid errors during the request.
Notes
- This API call changes the status on the initiator's connection side.
Authentication#auth
This endpoint does not require authentication.