OBJECT

GraphQLUser

link GraphQL Schema definition

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