Skip to main content

limitedToken

Description

No description


Response

Returns a AppToken


Arguments

NameDescription
context - PermissionContext
entityId - String
impersonateMemberId - String
networkId - String!

Query
query limitedToken(
$context: PermissionContext,
$entityId: String,
$impersonateMemberId: String,
$networkId: String!
) {
limitedToken(
context: $context,
entityId: $entityId,
impersonateMemberId: $impersonateMemberId,
networkId: $networkId
) {
accessToken
gatewayUrl
}
}
Variables
{
"context": "MEMBER",
"entityId": "abc123",
"impersonateMemberId": "abc123",
"networkId": "xyz789"
}
Response
{
"data": {
"limitedToken": {
"accessToken": "abc123",
"gatewayUrl": "xyz789"
}
}
}