For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
    • Home
    • API Basics
  • Products
    • Global Fiat Payouts
    • On-Ramps and Off-Ramps
  • Integration Guides
    • Global payouts integration guide
    • Country-specific details
  • API Reference
      • GETList Verification Images
      • POSTUpload Verification Images
LogoLogo
API ReferenceVerification Images

Upload Verification Images

POST
https://api.latitude.xyz/v1/individuals/:id/verification_images
POST
/v1/individuals/:id/verification_images
$curl -X POST https://api.latitude.xyz/v1/individuals/id/verification_images \
> -H "Content-Type: application/json" \
> -d '{
> "images": [
> {
> "type": "document-front",
> "content": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEASABIAAD..."
> }
> ]
>}'
1{
2 "individual_id": "ind_123e4567-e89b-12d3-a456-426614174000",
3 "images": [
4 {
5 "id": "img_987f6543-e21b-45d3-b789-123456789abc",
6 "type": "document-front",
7 "content_type": "image/jpeg",
8 "created_at": "2024-01-15T09:30:00Z",
9 "updated_at": "2024-01-15T09:30:00Z"
10 }
11 ]
12}
Uploads verification images for an individual
Was this page helpful?
Previous

List Transfers

Next
Built with

Path parameters

idstringRequired

Request

This endpoint expects an object.
imageslist of objectsRequired
Array of verification images

Response

Upload Verification Images
individual_idstring
Public identifier for the individual
imageslist of objects
Array of verification images

Errors

400
Bad Request Error
404
Not Found Error
422
Unprocessable Entity Error