ENUM

DestinationStatus

Lifecycle state of a Destination's connection to its vendor (e.g. Ayrshare).

link GraphQL Schema definition

1enum DestinationStatus {
2
3# Created; awaiting completion of the vendor OAuth handshake.
4PENDING_OAUTH
5
6# OAuth complete and verified; ready to distribute.
7CONNECTED
8
9# Previously connected, now intentionally detached.
10DISCONNECTED
11
12# Connection is in an error state (e.g. vendor reports the link was revoked).
13ERROR
14}