Fonbnk Docs
  • Intro
  • Integration Guide
  • On-ramp
    • How it works
    • URL Parameters
    • Webhook
  • Off-ramp
    • How it works
    • URL Parameters
    • Webhook
  • Reference
    • Servers
    • Signing requests
    • Endpoints
      • On-ramp
        • Assets
        • Order
        • Orders
        • Price
        • Providers
        • Limits
      • Off-ramp
        • Order
        • Orders
        • Best offer
        • Limits
        • Countries
        • Wallets
        • Validate fields
        • Create order
        • Confirm order
      • Util
        • Check address
        • Assets
      • Kyc
        • State
        • Submit
    • Specification
Powered by GitBook
On this page
  1. Reference
  2. Endpoints
  3. Kyc

Submit

PreviousState

Submit KYC

post

Submit KYC data for user

Authorizations
Body
phonestringOptional
idTypestringOptional
Responses
200
Successful response
application/json
post
POST /api/kyc/submit HTTP/1.1
Host: sandbox-api.fonbnk.com
x-client-id: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 187

{
  "phone": "254110612754",
  "idType": "NATIONAL_ID",
  "userFields": {
    "first_name": "John",
    "last_name": "Doe",
    "dob": "1954-01-02T02:02:22.544Z",
    "email": "some.email@gmail.com",
    "id_number": "82003470"
  }
}
200

Successful response

{
  "success": true
}