Verify name on a payment instrument

Request

Performs a name check inquiry on a payment instrument. Use this operation to confirm the name that is associated with a payment instrument. This operation supports payment cards only, using VISA ANI requests through Worldpay.

Security
SecretApiKey or JWT
Path
idstring, <= 50 characters^[@~\-\.\w]+$required

ID of the resource.

Bodyapplication/json
gatewayAccountIdstringrequired

ID of the gateway account.

curl -i -X POST \
  'https://www.rebilly.com/_mock/catalog/all/payment-instruments/{id}/name-inquiry' \
  -H 'Content-Type: application/json' \
  -H 'REB-APIKEY: YOUR_API_KEY_HERE' \
  -d '{
    "gatewayAccountId": "string"
  }'

Responses

Payment instrument name inquiry performed.

Headers
Locationstring, (uri)

Location of the related resource.

Example:"https://api.rebilly.com/example"
X-RateLimit-Limitinteger

Total number of rate limit tokens for this request within a rate limit period. For more information, see Rate limits.

Example:3600
X-RateLimit-Remaininginteger

Remaining number of rate limit tokens for this request within the rate limit period. For example, in the sandbox environment, rate limits for non-GET endpoints are set at 3000 requests per 10 minutes.

Example:3600
Bodyapplication/json
gatewayAccountIdstringrequired

ID of the gateway account.

resultstringread-only

Result of the payment instrument name inquiry.

Enum:"full-match""partial-match""no-match""not-supported""unknown"
responsestringread-only

Raw response message from gateway.

Response
{ "gatewayAccountId": "string", "result": "full-match", "response": "string" }