Skip to main content
POST
/
api
/
v1
/
photos
/
participant
/
{participantId}
Upload Participant Photo
curl --request POST \
  --url https://api.checkpoint.b-digital.uk/api/v1/photos/participant/{participantId} \
  --header 'Content-Type: multipart/form-data' \
  --header 'X-API-Key: <api-key>' \
  --form photo='@example-file'
{
  "success": true,
  "data": {},
  "meta": {
    "total": 123,
    "limit": 123,
    "offset": 123
  }
}

Authorizations

X-API-Key
string
header
required

API key for authentication

Path Parameters

participantId
string
required

Body

multipart/form-data
photo
file
required

Image file (JPEG, PNG, GIF, WebP). Max 5MB.

Response

200 - application/json

Photo uploaded successfully

success
boolean
Example:

true

data
object
meta
object