KYC Solution API Documentation
  1. Live Photos
KYC Solution API Documentation
  • 📘 Enum Reference
  • Clients
    • Create Client
      POST
    • Get Clients List
      GET
    • Get Client
      GET
  • Documents
    • Add Document
      POST
    • Add Document Attachment
      POST
    • Get Documents List
      GET
    • Get Document
      GET
    • View Document Attachment
      GET
  • Live Photos
    • Add Live Photo
      POST
    • Get Live Photos List
      GET
    • Get Live Photo
      GET
    • View Live Photo
      GET
  • Checks
    • Create Check Request
      POST
    • Get Check Result
      GET
    • Get Checks List
      GET
    • Get Client Latest Check
      GET
  1. Live Photos

Add Live Photo

POST
/service/documents/live_photo

Request

Authorization
Add parameter in header
X-Api-Key
Example:
X-Api-Key: ********************
Body Params multipart/form-data

Responses

🟢201201
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api-sandbox.kycsolution.com/api/service/documents/live_photo' \
--header 'X-Api-Key: <api-key>' \
--form 'client="5f87d422-b178-41fd-a8c4-b17003896e2a"' \
--form 'file=@""'
Response Response Example
{
    "result": {
        "mime_type": "image/jpeg",
        "file_name": "f3dfb4ff-747d-4631-83e3-d1bfd6bb8b73-istockphoto-1090878494-612x612.jpg",
        "client": {
            "id": "5f87d422-b178-41fd-a8c4-b17003896e2a"
        },
        "company": {
            "id": 1
        },
        "id": "d9fe6e57-bb3a-4561-80f6-e8ec5adc2d59",
        "created_at": "2025-07-11T13:11:16.841Z",
        "updated_at": "2025-07-11T13:11:16.841Z",
        "deleted_at": null
    }
}
Modified at 2025-11-27 20:03:00
Previous
View Document Attachment
Next
Get Live Photos List
Built with