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