409 Conflict
Conflict
- Code
conflict- Status
409Conflict- Type
https://errors.clavian.io/conflict
What it means
The request conflicts with the resource as it is now, usually because another request changed it at the same moment. detail says what conflicted.
What to do
Read the resource again, check that the request still makes sense, and send it again if it does.
Example
The API answers with status 409 and this body, as application/problem+json. A detail may be added, saying what went wrong this time; it is for people, and changes.
{
"type": "https://errors.clavian.io/conflict",
"title": "Conflict",
"status": 409,
"code": "conflict",
"requestId": "req_01k5znw4hmfay8vvr14d2pf2db"
}
Endpoints that return it
13 endpoints in the OpenAPI document name it among their answers.
All 13 endpoints
POST /v1/hq/organizations/{organizationId}/owner-invitationsInvite an owner to an organisation that has nonePOST /v1/organizations/{organizationId}/players/{playerId}/banBan a player from every venue of the organisationPOST /v1/organizations/{organizationId}/players/{playerId}/id-checksRecord a staff document ID checkPOST /v1/organizations/{organizationId}/players/{playerId}/unbanLift a player’s organisation banPATCH /v1/organizations/{organizationId}/venues/{venueId}Edit a venuePOST /v1/organizations/{organizationId}/venues/{venueId}/archiveClose a venue for goodPOST /v1/organizations/{organizationId}/venues/{venueId}/players/{playerId}/banBan a player from one venuePOST /v1/organizations/{organizationId}/venues/{venueId}/players/{playerId}/unbanLift a player’s ban at one venuePUT /v1/organizations/{organizationId}/venues/{venueId}/settingsChange a venue’s settingsPOST /v1/organizations/{organizationId}/venues/{venueId}/station-classesCreate a station classPATCH /v1/organizations/{organizationId}/venues/{venueId}/station-classes/{classId}Edit a station classPOST /v1/organizations/{organizationId}/venues/{venueId}/zonesCreate a zonePATCH /v1/organizations/{organizationId}/venues/{venueId}/zones/{zoneId}Rename or recolour a zone