Payee Invitation

Query Batch Status

Use v4 instead

Fetch the status of a specific batch of payees. The batch is fully processed when status is ACCEPTED and pendingCount is 0 ( 200 - OK, 404 - batch not found ).

get/v3/payees/batch/{batchId}

Path parameters

batchIdstring uuid required

Batch Id

Response

Get Batch Status

statusstring

Batch Status. One of the following values: SUBMITTED, ACCEPTED

failureCountinteger
pendingCountinteger

Example response

{
  "failures": [
    {
      "failedSubmission": {
        "payorRefs": [
          {
            "payorId": "ba08877f-9d96-41e4-9c26-44a872d856ae",
            "invitationStatusTimestamp": "2019-01-20T09:00:00Z",
            "payableStatus": true,
            "invitationStatus": "invitationStatus",
            "payableIssues": [
              {
                "code": "3",
                "message": "payee-disabled"
              },
              {
                "code": "3",
                "message": "payee-disabled"
              }
            ],
            "remoteId": "uniqueIdForRemoteEntity",
            "paymentChannelId": "70faaff7-2c32-4b44-b27f-f0b6c484e6f3"
          },
          {
            "payorId": "ba08877f-9d96-41e4-9c26-44a872d856ae",
            "invitationStatusTimestamp": "2019-01-20T09:00:00Z",
            "payableStatus": true,
            "invitationStatus": "invitationStatus",
            "payableIssues": [
              {
                "code": "3",
                "message": "payee-disabled"
              },
              {
                "code": "3",
                "message": "payee-disabled"
              }
            ],
            "remoteId": "uniqueIdForRemoteEntity",
            "paymentChannelId": "70faaff7-2c32-4b44-b27f-f0b6c484e6f3"
          }
        ],
        "address": {
          "country": "US",
          "countyOrProvince": "FL",
          "line4": "line4",
          "city": "Key West",
          "line3": "line3",
          "line2": "line2",
          "line1": "500 Duval St",
          "zipOrPostcode": "33945"
        },
        "individual": {
          "name": {
            "firstName": "Bob",
            "lastName": "Smith",
            "otherNames": "H",
            "title": "Mr"
          },
          "nationalIdentification": "SA211123K",
          "dateOfBirth": "1970-05-20T00:00:00.000+0000"
        },
        "challenge": {
          "description": "challenge description",
          "value": "challenge test"
        },
        "language": "en-US",
        "company": {
          "taxId": "123123123",
          "name": "ABC Group Plc",
          "operatingName": "ABC Co"
        },
        "payeeId": "2aa5d7e0-2ecb-403f-8494-1865ed0454e9",
        "type": "type",
        "email": "bob@example.com",
        "remoteId": "Remote ID",
        "paymentChannel": {
          "paymentChannelName": "My Payment Channel",
          "routingNumber": "XXXXX6789",
          "accountName": "My account",
          "countryCode": "US",
          "iban": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX1234",
          "currency": "USD",
          "accountNumber": "XXXXXX5678"
        }
      },
      "failureMessage": "failure reason"
    },
    {
      "failedSubmission": {
        "payorRefs": [
          {
            "payorId": "ba08877f-9d96-41e4-9c26-44a872d856ae",
            "invitationStatusTimestamp": "2019-01-20T09:00:00Z",
            "payableStatus": true,
            "invitationStatus": "invitationStatus",
            "payableIssues": [
              {
                "code": "3",
                "message": "payee-disabled"
              },
              {
                "code": "3",
                "message": "payee-disabled"
              }
            ],
            "remoteId": "uniqueIdForRemoteEntity",
            "paymentChannelId": "70faaff7-2c32-4b44-b27f-f0b6c484e6f3"
          },
          {
            "payorId": "ba08877f-9d96-41e4-9c26-44a872d856ae",
            "invitationStatusTimestamp": "2019-01-20T09:00:00Z",
            "payableStatus": true,
            "invitationStatus": "invitationStatus",
            "payableIssues": [
              {
                "code": "3",
                "message": "payee-disabled"
              },
              {
                "code": "3",
                "message": "payee-disabled"
              }
            ],
            "remoteId": "uniqueIdForRemoteEntity",
            "paymentChannelId": "70faaff7-2c32-4b44-b27f-f0b6c484e6f3"
          }
        ],
        "address": {
          "country": "US",
          "countyOrProvince": "FL",
          "line4": "line4",
          "city": "Key West",
          "line3": "line3",
          "line2": "line2",
          "line1": "500 Duval St",
          "zipOrPostcode": "33945"
        },
        "individual": {
          "name": {
            "firstName": "Bob",
            "lastName": "Smith",
            "otherNames": "H",
            "title": "Mr"
          },
          "nationalIdentification": "SA211123K",
          "dateOfBirth": "1970-05-20T00:00:00.000+0000"
        },
        "challenge": {
          "description": "challenge description",
          "value": "challenge test"
        },
        "language": "en-US",
        "company": {
          "taxId": "123123123",
          "name": "ABC Group Plc",
          "operatingName": "ABC Co"
        },
        "payeeId": "2aa5d7e0-2ecb-403f-8494-1865ed0454e9",
        "type": "type",
        "email": "bob@example.com",
        "remoteId": "Remote ID",
        "paymentChannel": {
          "paymentChannelName": "My Payment Channel",
          "routingNumber": "XXXXX6789",
          "accountName": "My account",
          "countryCode": "US",
          "iban": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX1234",
          "currency": "USD",
          "accountNumber": "XXXXXX5678"
        }
      },
      "failureMessage": "failure reason"
    }
  ],
  "pendingCount": 2,
  "failureCount": 2,
  "status": "status"
}

Changes

Changed in 13 of the 50 revisions of this API.2986657

    • the //// response property's minLength was decreased from 6 to 4 for the response status

      response-property-min-length-decreased

    • the //// response property's minLength was decreased from 6 to 4 for the response status

      response-property-min-length-decreased

    This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • removed the ACCEPTED enum value from the ///// response property for the response status

      response-property-enum-value-removed

    • removed the ACCEPTED enum value from the response property for the response status

      response-property-enum-value-removed

    • removed the AD enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AF enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AI enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AL enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AQ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AS enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AT enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AU enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AW enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AX enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AZ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BB enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BD enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BF enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BH enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BI enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BJ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BL enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BQ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BS enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BT enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BV enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BW enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BY enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BZ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CC enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CD enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CF enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CH enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CI enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CK enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CL enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CU enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CV enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CW enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CX enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CY enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CZ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the Company enum value from the /// response property for the response status

      response-property-enum-value-removed

    • removed the DE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the DECLINED enum value from the ///// response property for the response status

      response-property-enum-value-removed

    • removed the DJ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the DK enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the DM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the DO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the DZ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the EC enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the EE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the EG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the EH enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the ER enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the ES enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the ET enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the FI enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the FJ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the FK enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the FM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the FO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the FR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GB enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GD enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GF enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GH enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GI enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GL enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GP enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GQ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GS enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GT enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GU enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GW enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GY enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the HK enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the HM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the HN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the HR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the HT enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the HU enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the ID enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the IE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the IL enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the IM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the IN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the IO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the IQ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the IR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the IS enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the IT enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the Individual enum value from the /// response property for the response status

      response-property-enum-value-removed

    • removed the JE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the JM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the JO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the JP enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KH enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KI enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KP enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KW enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KY enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KZ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LB enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LC enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LI enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LK enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LS enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LT enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LU enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LV enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LY enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MC enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MD enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the ME enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MF enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MH enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MK enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the ML enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MP enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MQ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MS enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MT enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MU enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MV enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MW enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MX enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MY enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MZ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NC enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NF enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NI enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NL enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NP enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NU enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NZ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the OM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PENDING enum value from the ///// response property for the response status

      response-property-enum-value-removed

    • removed the PF enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PH enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PK enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PL enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PS enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PT enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PW enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PY enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the QA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the RE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the RO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the RS enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the RU enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the RW enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SB enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SC enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SD enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SH enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SI enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SJ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SK enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SL enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SS enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the ST enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SUBMITTED enum value from the response property for the response status

      response-property-enum-value-removed

    • removed the SV enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SX enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SY enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SZ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TC enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TD enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TF enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TH enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TJ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TK enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TL enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TT enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TV enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TW enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TZ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the UA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the UG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the UM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the US enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the UY enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the UZ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the VA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the VC enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the VE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the VG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the VI enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the VN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the VU enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the WF enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the WS enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the YE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the YT enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the ZA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the ZM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the ZW enum value from the //// response property for the response status

      response-property-enum-value-removed

    This revision also has 5 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • removed the AD enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AF enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AI enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AL enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AQ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AS enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AT enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AU enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AW enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AX enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the AZ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BB enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BD enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BF enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BH enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BI enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BJ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BL enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BQ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BS enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BT enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BV enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BW enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BY enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the BZ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CC enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CD enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CF enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CH enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CI enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CK enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CL enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CU enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CV enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CW enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CX enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CY enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the CZ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the DE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the DJ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the DK enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the DM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the DO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the DZ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the EC enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the EE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the EG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the EH enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the ER enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the ES enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the ET enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the EUR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the FI enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the FJ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the FK enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the FM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the FO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the FR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GB enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GBP enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GD enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GF enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GH enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GI enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GL enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GP enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GQ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GS enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GT enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GU enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GW enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GY enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the HK enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the HM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the HN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the HR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the HT enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the HU enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the ID enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the IE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the IL enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the IM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the IN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the IO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the IQ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the IR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the IS enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the IT enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the JE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the JM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the JO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the JP enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KH enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KI enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KP enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KW enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KY enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the KZ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LB enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LC enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LI enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LK enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LS enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LT enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LU enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LV enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the LY enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MC enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MD enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the ME enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MF enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MH enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MK enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the ML enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MP enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MQ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MS enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MT enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MU enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MV enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MW enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MX enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MY enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the MZ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NC enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NF enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NI enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NL enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NP enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NU enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the NZ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the OM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PF enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PH enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PK enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PL enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PS enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PT enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PW enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the PY enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the QA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the RE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the RO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the RS enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the RU enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the RW enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SB enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SC enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SD enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SH enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SI enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SJ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SK enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SL enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SS enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the ST enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SV enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SX enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SY enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the SZ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TC enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TD enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TF enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TH enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TJ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TK enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TL enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TO enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TT enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TV enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TW enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the TZ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the UA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the UG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the UM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the US enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the USD enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the UY enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the UZ enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the VA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the VC enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the VE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the VG enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the VI enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the VN enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the VU enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the WF enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the WS enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the YE enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the YT enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the ZA enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the ZM enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the ZW enum value from the //// response property for the response status

      response-property-enum-value-removed

    • the //// response's property pattern ^[A-Z]{2}$ was added for the status

      response-property-pattern-added

    • the //// response's property pattern ^[A-Z]{3}$ was added for the status

      response-property-pattern-added

    This revision also has 76 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • 5280d78a309d12717See the full diff
    • the response property /// became nullable for the status

      response-property-became-nullable

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • the response optional property /// became read-only for the status

      response-optional-property-became-read-only

    • the response property //// became required for the status

      response-property-became-required

    • added the required property //// to the response with the status

      response-required-property-added

    • added the required property //// to the response with the status

      response-required-property-added

    • added the required property //// to the response with the status

      response-required-property-added

    • added the required property //// to the response with the status

      response-required-property-added

    This revision also has 11 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • 5e436969863951627See the full diff
    • the response property //// became optional for the status

      response-property-became-optional

    • removed the required property //// from the response with the status

      response-required-property-removed

    • removed the required property //// from the response with the status

      response-required-property-removed

    • removed the required property //// from the response with the status

      response-required-property-removed

    • removed the required property //// from the response with the status

      response-required-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property ///// to the response with the status

      response-optional-property-added

    • added the optional property ///// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • the response optional property //// became not read-only for the status

      response-optional-property-became-not-read-only

    • the response optional property /// became not read-only for the status

      response-optional-property-became-not-read-only

    • the response required property //// became not read-only for the status

      response-required-property-became-not-read-only

    This revision also has 27 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • dd71433847a6435See the full diff
    • the / response's property type changed from no type to object for status

      response-property-type-changed

    • the / response's property type changed from no type to object for status

      response-property-type-changed

    • the / response's property type changed from no type to object for status

      response-property-type-changed

    • the / response's property type changed from no type to object for status

      response-property-type-changed

    • added the optional property // to the response with the status

      response-optional-property-added

    • added the optional property // to the response with the status

      response-optional-property-added

    • added the optional property // to the response with the status

      response-optional-property-added

    • added the optional property // to the response with the status

      response-optional-property-added

    • added the optional property // to the response with the status

      response-optional-property-added

    • added the optional property // to the response with the status

      response-optional-property-added

    • added the optional property // to the response with the status

      response-optional-property-added

    • added the optional property // to the response with the status

      response-optional-property-added

    • added the optional property // to the response with the status

      response-optional-property-added

    • added the optional property // to the response with the status

      response-optional-property-added

    • added the optional property // to the response with the status

      response-optional-property-added

    • added the optional property // to the response with the status

      response-optional-property-added

    • added the optional property to the response with the status

      response-optional-property-added

    • added the optional property to the response with the status

      response-optional-property-added

    • added the optional property to the response with the status

      response-optional-property-added

    • added the optional property to the response with the status

      response-optional-property-added

    • response property errors/items/locationType deprecated

      response-property-deprecated

    • response property errors/items/locationType deprecated

      response-property-deprecated

    • response property errors/items/locationType deprecated

      response-property-deprecated

    • response property errors/items/locationType deprecated

      response-property-deprecated

    • response property errors/items/reasonCode deprecated

      response-property-deprecated

    • response property errors/items/reasonCode deprecated

      response-property-deprecated

    • response property errors/items/reasonCode deprecated

      response-property-deprecated

    • response property errors/items/reasonCode deprecated

      response-property-deprecated

    • removed the AR enum value from the /// response property for the response status

      response-property-enum-value-removed

    • removed the EN enum value from the /// response property for the response status

      response-property-enum-value-removed

    • removed the ES enum value from the /// response property for the response status

      response-property-enum-value-removed

    • removed the FR enum value from the /// response property for the response status

      response-property-enum-value-removed

    • removed the HE enum value from the /// response property for the response status

      response-property-enum-value-removed

    • removed the HI enum value from the /// response property for the response status

      response-property-enum-value-removed

    • removed the JA enum value from the /// response property for the response status

      response-property-enum-value-removed

    • removed the PT enum value from the /// response property for the response status

      response-property-enum-value-removed

    • removed the RU enum value from the /// response property for the response status

      response-property-enum-value-removed

    • removed the UR enum value from the /// response property for the response status

      response-property-enum-value-removed

    • removed the ZH enum value from the /// response property for the response status

      response-property-enum-value-removed

    This revision also has 9 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • endpoint deprecated

      endpoint-deprecated

    • the response's body type changed from object to no type for status

      response-body-type-changed

    • the / response's property type changed from object to no type for status

      response-property-type-changed

    This revision also has 26 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • 7c8cfeb5995262523See the full diff
    • the response property /// became nullable for the status

      response-property-became-nullable

    • the //// response property's maxLength was unset from 30 for the response status

      response-property-max-length-unset

    • the //// response property's maxLength was unset from 3 for the response status

      response-property-max-length-unset

    • the //// response property's minLength was decreased from 6 to 0 for the response status

      response-property-min-length-decreased

    • the //// response property's minLength was decreased from 3 to 0 for the response status

      response-property-min-length-decreased

    • the //// response's property format changed from date to no format for status

      response-property-type-changed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • added the new EUR enum value to the //// response property for the response status

      response-property-enum-value-added

    • added the new GBP enum value to the //// response property for the response status

      response-property-enum-value-added

    • added the new USD enum value to the //// response property for the response status

      response-property-enum-value-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • the response optional property //// became read-only for the status

      response-optional-property-became-read-only

    • the response optional property //// became read-only for the status

      response-optional-property-became-read-only

    • the response optional property /// became read-only for the status

      response-optional-property-became-read-only

    • the response property //// became required for the status

      response-property-became-required

    • the //// response's property pattern ^[\d]{9}$ was added for the status

      response-property-pattern-added

    • the //// response's property pattern ^[A-Z]{3}$ was removed for the status

      response-property-pattern-removed

    • added the required property //// to the response with the status

      response-required-property-added

    • added the required property //// to the response with the status

      response-required-property-added

    • added the required property //// to the response with the status

      response-required-property-added

    • added the required property //// to the response with the status

      response-required-property-added

    This revision also has 62 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • 68f50053dc4071330See the full diff
    • the response property //// became nullable for the status

      response-property-became-nullable

    • the response property //// became nullable for the status

      response-property-became-nullable

    • the response property //// became optional for the status

      response-property-became-optional

    • removed the required property //// from the response with the status

      response-required-property-removed

    • removed the required property //// from the response with the status

      response-required-property-removed

    • removed the required property //// from the response with the status

      response-required-property-removed

    • removed the required property //// from the response with the status

      response-required-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property //// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • removed the optional property /// from the response with the status

      response-optional-property-removed

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property //// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • added the optional property /// to the response with the status

      response-optional-property-added

    • the response optional property //// became not read-only for the status

      response-optional-property-became-not-read-only

    • the response optional property /// became not read-only for the status

      response-optional-property-became-not-read-only

    • removed the EUR enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the GBP enum value from the //// response property for the response status

      response-property-enum-value-removed

    • removed the USD enum value from the //// response property for the response status

      response-property-enum-value-removed

    • the //// response's property pattern ^[A-Z]{3}$ was added for the status

      response-property-pattern-added

    • the //// response's property pattern ^[\d]{9}$ was removed for the status

      response-property-pattern-removed

    • the response required property //// became not read-only for the status

      response-required-property-became-not-read-only

    This revision also has 47 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog