UtilitayDevelopers
Ravenraven
Get an API key
API reference

Subscriptions

/subjects

A subscription is what events are about. Customers are subscribed to subscriptions through /links. In the Subscription business pack a subscription is, for example, “Raven Tier 2” with reference SUB-2026-001.

GETList subscriptions

Requires subjects:read. Returns a bare JSON array, newest first. No envelope, no total; stop when a page comes back shorter than limit.

Query parameters
limitinteger · default 50 · max 200
offsetinteger · default 0
qstring · optional · max 100
Matches display_name, part of a reference and attribute values. It is a search, not a lookup, so it cannot be combined with external_ref.
statusactive | inactive · optional
external_refstring · optional · max 200
Your own id for the subscription, looked up exactly: an array of one, or an empty one. It is how a system finds the record it created, without keeping a copy of Raven's id. Refused with 400 alongside q: search, or look up.
Returns

200 with an array of subscriptions. An empty array when nothing matches.

Response body

A bare JSON array. Each item is one subscription: the same fields in every pack. Press Response on the sample to see one whole.

FieldTypeDescription
iduuid
tenant_iduuidThe instance.
external_refstring | nullYour own id, as you sent it.
display_namestring
attributesobjectShaped by the Subscription business pack's subject_schema.Varies by pack
statusactive | inactive
created_atdatetime
updated_atdatetime

On failure the body is { error, code } instead.