GET v{version}/errors/conflict

Details

A 409 conflict response. This error occurs when there is a conflict between client and server. If a client tries to post a data object that the server does not understand a 409 conflict response would be returned.

https://api.procurewizard.com/v1.0/errors/conflict

Request

URI Parameters

These are parameters passed as part of the URL in the request.

Name Description Type Additional information
version

The API version parameter. The current version is 1.0.

string

None

Response

Response Description

A response object of ErrorResponse
Name Description Type Additional information
errors

The current collection of errors.

Collection of Error

None

jsonApi

Implementation details of JSON:API.

Implementation

None

Response Formats

Example responses of what the data might contain.

    
{
  "errors": [
    {
      "id": "85fa5190a6ae4d63be3bf6172e245f01",
      "links": {},
      "status": "Continue",
      "code": "400",
      "title": "Example Error",
      "detail": "Example error details.",
      "source": {
        "pointer": {},
        "parameter": "Sample string 2"
      },
      "meta": {
        "copyright": "© 2025 The Access Group"
      }
    },
    {
      "id": "85fa5190a6ae4d63be3bf6172e245f01",
      "links": {},
      "status": "Continue",
      "code": "400",
      "title": "Example Error",
      "detail": "Example error details.",
      "source": {
        "pointer": {},
        "parameter": "Sample string 2"
      },
      "meta": {
        "copyright": "© 2025 The Access Group"
      }
    }
  ],
  "jsonApi": {
    "version": "1.0"
  }
}
    
    
<ErrorResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProcureWizard.Infrastructure.Api.ErrorManagement.Debugging">
  <JsonApi xmlns:d2p1="http://schemas.datacontract.org/2004/07/ProcureWizard.Infrastructure.Api.JsonApi" xmlns="http://schemas.datacontract.org/2004/07/ProcureWizard.Infrastructure.Api">
    <d2p1:Version>1.0</d2p1:Version>
  </JsonApi>
  <Errors>
    <Error>
      <Code>400</Code>
      <Detail>Example error details.</Detail>
      <Id>85fa5190a6ae4d63be3bf6172e245f01</Id>
      <Links />
      <Meta xmlns:d4p1="http://schemas.datacontract.org/2004/07/ProcureWizard.Infrastructure.Api.JsonApi">
        <d4p1:Copyright>© 2025 The Access Group</d4p1:Copyright>
      </Meta>
      <Source xmlns:d4p1="http://schemas.datacontract.org/2004/07/ProcureWizard.Infrastructure.Api.JsonApi">
        <d4p1:Parameter>Sample string 2</d4p1:Parameter>
        <d4p1:Pointer />
      </Source>
      <Status>Continue</Status>
      <Title>Example Error</Title>
    </Error>
    <Error>
      <Code>400</Code>
      <Detail>Example error details.</Detail>
      <Id>85fa5190a6ae4d63be3bf6172e245f01</Id>
      <Links />
      <Meta xmlns:d4p1="http://schemas.datacontract.org/2004/07/ProcureWizard.Infrastructure.Api.JsonApi">
        <d4p1:Copyright>© 2025 The Access Group</d4p1:Copyright>
      </Meta>
      <Source xmlns:d4p1="http://schemas.datacontract.org/2004/07/ProcureWizard.Infrastructure.Api.JsonApi">
        <d4p1:Parameter>Sample string 2</d4p1:Parameter>
        <d4p1:Pointer />
      </Source>
      <Status>Continue</Status>
      <Title>Example Error</Title>
    </Error>
  </Errors>
</ErrorResponse>
    

Back