Skip to content
.seventhings.com

Prefill your credentials

Fill in your non-secret values to have them appear in the examples below. Stored locally in your browser.

Get person by id.

GET
/customer-api/v1/person/by-id/{personId}
curl --request GET \
--url https://your-instance.seventhings.com/customer-api/v1/person/by-id/1 \
--header 'Authorization: Bearer <token>'

Get the information about the person by integer id.

personId
required
integer
<= 9007199254740992

The information about the person

Media typeapplication/json

A person represented as a flat map of field keys to values.

object
Example
{
"<field_key_1>": "<field_value_1>",
"<field_key_2>": "<field_value_2>",
"<field_key_3>": "<field_value_3>"
}

Access token is missing or invalid.

You are not permitted to perform the requested operation.

Internal Server Error.