GET
/
batches
/
{merchantMatchBatchId}
/
results
curl --request GET \
  --url https://east.sandbox.spade.com/batches/{merchantMatchBatchId}/results \
  --header 'X-Api-Key: <api-key>'
{
  "results": [
    {
      "requestId": "<string>",
      "counterparty": {
        "id": "<string>",
        "name": "<string>",
        "similarity": 80
      },
      "location": {
        "id": "<string>",
        "name": "<string>",
        "address": "1234 W 5th Ave Suite 100",
        "city": "New York",
        "similarity": 80
      },
      "customAttributes": {
        "custom_attribute_1": "value_1",
        "custom_attribute_2": "value_2"
      },
      "statusCode": 200,
      "errors": {
        "merchantName": [
          "This field is required."
        ]
      }
    }
  ]
}

Authorizations

X-Api-Key
string
header
required

Path Parameters

merchantMatchBatchId
string
required

ID of the batch merchant matching job

Response

200
application/json

Successful operation

The response is of type object.