v1

latestOpenAPI 3.0.0All rights reserved2026-07-2439128156.3 KB
Tag

Query Tag

Returns whether the last 4 of a phone number match what is on record. May also return the owner's name.

post/v2/clients/{ClientID}/tags

Path parameters

ClientIDstring required

22-character <glossary:ClientID>. Ask TabaPay Support if you need to specify a <glossary:SubClientID>.

Request body

networkstring required

The network of the tag. Supported Networks:

  • Visa
tagNamestring required

The name of the tag.

  • For Visa, this would be the payname
phoneLast4string

Last 4 digits of the tag owner's phone number.

Example request

{
  "network": "Visa",
  "tagName": "+sammy.wallet",
  "phoneLast4": "4343"
}

Response

Returns whether the last 4 of a phone number match what is on record. May also return the owner's name.

ECstring

Internal Error Code. This is used to help TabaPay team members trace an error.

codeConfirmResultstring

M = Match N = No Match A = Match was not performed

Example response

{
  "codeConfirmResult": "M",
  "name": {
    "first": "Sam",
    "middle": "Wise",
    "last": "Gamkee"
  }
}