Skip to main content
curl --request GET \
  --url https://app.voker.ai/api/v1/people/person_123 \
  --header "Authorization: Bearer $VOKER_API_KEY"
Pass your API key as a Bearer token in the Authorization header: Authorization: Bearer YOUR_API_KEYSet the VOKER_API_KEY environment variable in your application to keep your key out of source code.

Get Person

GET /api/v1/people/{person_id} Path parameters
person_id
string
required
The unique identifier of the person.
Responses
person_id
string
The unique identifier of the person.
properties
object
Arbitrary key-value properties attached to the person. May be null.
created_at
string
ISO 8601 timestamp of when the person was created.
{ "type": "person-not-found" }

Create Person

PUT /api/v1/people Request body
person_id
string
required
A unique identifier for the person.
properties
object
Arbitrary key-value properties to attach to the person at creation time.
Responses
person_id
string
The unique identifier of the created person.
properties
object
Properties attached to the person. May be null.
created_at
string
ISO 8601 timestamp of when the person was created.

Update Person

PUT /api/v1/people/{person_id} Path parameters
person_id
string
required
The unique identifier of the person to update.
Request body
properties
object
required
The properties to set on the person. This replaces the existing properties object.
Responses
person_id
string
The unique identifier of the person.
properties
object
Updated properties. May be null.
created_at
string
ISO 8601 timestamp of when the person was created.
{ "type": "person-not-found" }