INPUT_OBJECT

GraphQLUpdateTokenInput

link GraphQL Schema definition

1input GraphQLUpdateTokenInput {
2
3id: Int
4
5token: String
6
7# Description of this token, should reflect its purpose and ownership.
8# For example, "Syncing product catalog via Lambda" or "John's personal token".
9name: String
10
11# Legal entity responsible for maintaining the token (whoever is building this integration).
12# For example, "Web Agency Inc".
13organizationName: String
14
15# Logical integration name or a Centra module identifier.
16# Must be set to get access to a conversion table and subscribe to events.
17# For example, "Migration from SOAP" or "Google feed generation".
18integrationName: String
19
20# Email that can be used as a point of contact in case any questions or troubleshooting.
21email: String
22
23# Phone number that can be used as a point of contact in urgent cases.
24phoneNumber: String
25
26permissions: [String!]
27
28restrictions: GraphQLUserRestrictionsInput
29
30ttl: Int
31}

link Required by