OBJECT

Destination

An org-scoped publish channel: 1:1 to a vendor (Ayrshare) User Profile / social account.

link GraphQL Schema definition

1type Destination {
2
3id: ID!
4
5destinationTypeId: ID!
6
7destinationType: DestinationType
8
9label: String!
10
11# Must conform to destinationType.configSchema; validated server-side at every
12# write.
13details: JSONData
14
15# Ayrshare Profile-Key — opaque credential, restricted to org admins.
16vendorProfileId: String!
17
18# Linked social-account label, e.g. "@channel-name".
19platformAccountLabel: String
20
21status: DestinationStatus!
22
23# Short-lived vendor OAuth URL while status is PENDING_OAUTH; null once CONNECTED.
24oauthUrl: String
25
26oauthUrlExpiresAt: DateTime
27
28createdBy: User
29
30createdDateTime: DateTime!
31
32modifiedDateTime: DateTime
33
34}

link Required by

This element is not required by anyone