Skip to main content
POST
/
users
/
verification-requests
/
submit
Submit verification data
curl --request POST \
  --url https://prod-api.pcxpay.com/v1/users/verification-requests/submit \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <x-api-key>' \
  --data '
{
  "request_id": "<string>",
  "verification_value": "<string>",
  "notes": "<string>"
}
'
{
  "message": "Verification data submitted successfully",
  "request_id": "<string>",
  "verification_type": "<string>",
  "status": "<string>",
  "submitted_at": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.pcxpay.com/llms.txt

Use this file to discover all available pages before exploring further.

Headers

Authorization
string
default:NONE
required

Bearer JWT for user-facing flows (Bearer eyJraWQ...), or the literal string NONE when authenticating via API key.

Example:

"Bearer eyJraWQ..."

X-Api-Key
string
default:NONE
required

API key for server-to-server flows, or the literal string NONE when authenticating via JWT.

Example:

"pcx_abc123_xxxx"

Body

application/json
request_id
string
required
verification_value
string
required

The actual BVN or NIN number being submitted.

notes
string

Response

Verification data submitted

message
string
Example:

"Verification data submitted successfully"

request_id
string
verification_type
string
status
string
submitted_at
string