v1

latestOpenAPI 3.0.22026-07-2432112226.7 KB
Tax Number Verification

Tax Number NPWP Endpoint

This method helps you to check tax identifier. Please check Verihubs Guidelines to learn more on how to use this endpoint.

post/data-verification/tax/npwp/verify

Headers

App-IDstring required
API-Keystring required

Request body

npwpstring required

16 digits number from NPWP card, if it's a 15 digit number, add 0 before the first number to make it 16 digits.

purposestring required

Purpose of doing the verification.

reference_idstring

This reference_id can be used to indicate your company’s transaction (must be unique per transaction).

Example request

{
  "npwp": "327135756xxxxxxx",
  "purpose": "Check personal npwp",
  "reference_id": "Testing-001"
}

Response

Successful Request

messagestring required

Message

Example response

{
  "message": "Successfully check NPWP.",
  "data": {
    "id": "238fc15d-5f3c-4a72-8d59-63bd8d4288e2",
    "reference_id": "ref_tax#72708413-4bd5-4d2e-982f-da9d7085b010",
    "name": "J*hn D**",
    "alamat": "J*k*rt* B*r*t",
    "status_wp": "AKTIF",
    "status_spt": "VALID"
  }
}