/v1/channel/conflicts/{id}
PATCH
/v1/channel/conflicts/{id}
const url = 'http://localhost:8787/v1/channel/conflicts/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0';const options = { method: 'PATCH', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"status":"resolved_relocated"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PATCH \ --url http://localhost:8787/v1/channel/conflicts/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0 \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "status": "resolved_relocated" }'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string format: uuid
Request Body
Section titled “Request Body”Media typeapplication/json
object
status
required
string
Responses
Section titled “Responses”The conflict, now in the requested terminal state.
Media typeapplication/json
object
connectionId
required
string format: uuid
createdAt
required
string
endsAt
required
string
id
required
string format: uuid
inboundEvent
required
string
listingId
required
string format: uuid
reservationId
required
string format: uuid
resourceId
required
string format: uuid
startsAt
required
string
status
required
string
Example
{ "status": "open"}No such channel conflict for this tenant.
Media typeapplication/problem+json
object
code
required
string
detail
required
string
status
required
number
title
required
string
type
required
string
Example
{ "code": "resource_not_found"}This conflict is already resolved (either terminal state) — no re-resolving.
Media typeapplication/problem+json
object
code
required
string
detail
required
string
status
required
number
title
required
string
type
required
string
Example
{ "code": "resource_not_found"}