Validate Request

Validates the request, and returns any error information at both request parameter and request level.

post

/v1/commerce/requests/{id}/validate

Path parameters
idstringrequired

Request id

Responses
curl -L \
  --request POST \
  --url '/v1/commerce/requests/{id}/validate'
{
  "error": "text",
  "parameters": [
    {
      "id": "text",
      "externalId": "text",
      "value": "text",
      "isValid": true,
      "error": "text"
    }
  ]
}

Last updated

Was this helpful?