GET
/
v1
/
subscribers
/
{id}
curl --request GET \
  --url https://api.chronhq.com/v1/subscribers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "fI7AqBtWI4H44p9GlJ5uz0R0Xe",
  "active": true,
  "created": "2022-08-24T14:15:22Z",
  "email": "[email protected]",
  "first_name": "oberon",
  "last_name": "pitterson",
  "object": "subscriber",
  "updated": "2023-08-24T14:15:22Z"
}

Authorizations

Authorization
string
header
required

Bearer HTTP authentication. Allowed headers-- Authorization: Bearer <api_key>

Path Parameters

id
string
required

The identifier of the subscriber which will be returned.

Maximum length: 5000

Response

200
application/json
Successful response.

This is an object representing a person subscribed to a calendar.

active
boolean

Whether the subscriber is currently available.

created
string

Time at which the object was created, in ISO 8601 format.

email
string

The subscriber's email address.

Maximum length: 5000
first_name
string

The subscriber's first name.

Maximum length: 5000
id
string

Unique identifier for the object.

Maximum length: 5000
last_name
string

The subscriber's last name.

Maximum length: 5000
object
enum<string>

String representing the object's type. Objects of the same type share the same value.

Available options:
subscriber
updated
string

Time at which the object was last updated, in ISO 8601 format.