Partner API
  1. KYC by P100
Partner API
  • Getting Started
    • Introduction
    • Authentication
    • Business Use Cases
  • API References
    • Partner Operations
      • Get Balances
      • Get Transaction History
      • Retrieve Exchange Rate and Create a Lock
      • Create and Finalize an Exchange
      • Create Crypto Withdrawal
      • Create a SEPA Transfer
      • Get SEPA Transfer Details
    • User Accounts with KYC
      • Create User Account and Generate Balances
      • Add KYC File
      • Add POA File
      • Add User Verification
      • Update Existing User
      • Delete User
      • Suspend User
      • Unsuspend User
      • Get User Balances
      • Get User Transaction History
    • User Accounts without KYC
      • Create User Account and Generate Balances Without KYC
      • Update Existing User
      • Delete User
      • Suspend User
      • Unsuspend User
      • Get User Balances
      • Get User Transaction History
    • KYC by P100
      • Creating KYC Verification
        POST
      • Redirect to Verification
        GET
      • Get KYC Status
        GET
    • Currency Exchange
      • Retrieve Exchange Rate
      • Retrieve Exchange Rate and Create a Lock
      • Create and Finalize an Exchange
      • Retrieve Detailed Exchange Infromation
    • Crypto Deposits
      • Update Travel Rule
    • Crypto Withdrawals
      • Get Network Fee
      • Create Crypto Withdrawal
      • Get Crypto Withdrawal Details
    • Internal Transfers
      • Create a Transfer
      • Get Transfer Details
    • Virtual Cards
      • Create Virtual Card
      • Get All User Cards
      • Get Card Details
      • Update Card PIN
      • Block Card
      • Unblock Card
      • Get Card Limits
      • Update Card Limits
      • Delete Card
    • Custom Fiat Operations
      • SEPA Deposit & Withdrawal
  • Integration
    • SDKs & Integration Guides
    • Transaction Processing
    • Error Handling
    • Rate Limiting
    • Webhooks
      • User & KYC Webhooks
        • User Balance Generation
        • KYC File Added
        • POA Verification Status
        • KYC Verification Status
      • Transfers & Payments Webhooks
        • P2P Transfer Webhook
        • SEPA Transfer
        • SEPA Deposit
        • Crypto Withdrawal
        • Crypto Deposit
        • Exchange
        • Card Transaction
      • Card Webhooks
        • Card 3DS Code
        • Card Activation Code
  • Reference
    • Supported Countries
    • Supported Currencies
    • Fees
    • FAQ
    • Changelog
    • Support
  1. KYC by P100

Redirect to Verification

Testing Env
https://partner-api-stage.p100.io
Testing Env
https://partner-api-stage.p100.io
GET
/v1/kyc/verification/{externalUserId}/{verificationId}
This endpoint is used to redirect the user to the P100 hosted page where they can complete their KYC verification. You should redirect your user's browser to the URL generated by this endpoint. The verification page guides the user through the process of uploading necessary documents and confirming their identity.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://partner-api-stage.p100.io/v1/kyc/verification//'
Response Response Example
400 - P412
{
    "errorCode": "P412",
    "errorMessage": "User does not exist",
    "errorName": "invalid-user"
}

Request

Path Params

Responses

🟢200Success
text/html

Response Behavior

When this endpoint is called, the API's behavior is as follows:
1.
You will receive an HTTP 200 OK response.
2.
The response body will contain raw HTML content for a loading page (e.g., <html>...</html>)
3.
The actual redirection to the verification session does not occur via a standard HTTP 302 redirect or a Location header. Instead, the user's browser is redirected through embedded logic and a series of redirect chains handled by the verification service.

How to Obtain the Redirect URL

To correctly redirect your user to the iDenfy verification session, you must capture the final URL from the network redirect chain. This URL is not available in the initial response body or headers. It can be captured using browser developer tools or a network inspection proxy.
Example Flow
The network flow will look similar to this:
1.
Initial Request:
GET https://partner-api-stage.p100.io/v1/kyc/verification/6ef2fb57.../1306fc1d...
2.
Final Redirect URL (Target):
GET https://ui.idenfy.com/?authToken=wosP8TruRQm...&country=de
To properly redirect your user, you must use the final URL from this chain.
Important Notes
If you test this endpoint in tools like Apidog or Postman, you will see the raw HTML of the initial loading page in the response body.
Do not attempt to copy and open this HTML content directly in a browser, as it will not work.
You must capture the final redirect URL from the network flow and use that URL to redirect your user.
Body

🟠400P412: User not exist
🟠404P445: KYC not found
🟠400P500: Unknown exception
🟠400P501: Service temporarily unavailable
Previous
Creating KYC Verification
Next
Get KYC Status
Built with