INPUT_OBJECT
AccessTokenUpdateInput
link GraphQL Schema definition
1 input AccessTokenUpdateInput { 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 # Override token validity by specifying the number of seconds from now. 27 # It may cause a flip from inactive back to active. 28 Int : 29 }