Generate a new Cognito APP client
POST /appClient
Generate a new Cognito APP client
You must authenticate using an access token with the Authorization:accessToken
header to use this endpoint.
Body parameter
{
"groupId": "string",
"name": "string"
}
Parameters
Responses
Update the Cognito APP client
PUT /appClient
Update the Cognito APP client
You must authenticate using an access token with the Authorization:accessToken
header to use this endpoint.
Body parameter
{
"name": "string",
"newName": "string",
"groupId": "string"
}
Parameters
Responses
Delete the Cognito APP client
DELETE /appClient
Delete the Cognito APP client
You must authenticate using an access token with the Authorization:accessToken
header to use this endpoint.
Parameters
Name | In | Type | Required | Description |
---|
name | query | string | true | UnaConnect Group Id |
appClientId | query | string | true | The APP Client id to provide |
Responses
Schemas
GroupAppClient
{
"groupId": "string",
"appClientId": "string",
"secret": "string",
"description": "string",
"expiration": 0
}
Name | Type | Required | Restrictions | Description |
---|
groupId | string | true | none | none |
appClientId | string | true | none | none |
secret | string | true | none | none |
description | string | false | none | none |
expiration | integer | false | none | none |
UpdateGroupAppClient
{
"appClientId": "string",
"secret": "string",
"name": "string",
"expiration": 0
}
Name | Type | Required | Restrictions | Description |
---|
appClientId | string | true | none | none |
secret | string | true | none | none |
name | string | true | none | none |
expiration | integer | false | none | none |
DeleteGroupAppClient
{
"name": "string",
"appClientId": "string"
}
Name | Type | Required | Restrictions | Description |
---|
name | string | true | none | none |
appClientId | string | true | none | none |
{
"groupId": "string",
"name": "string"
}
Name | Type | Required | Restrictions | Description |
---|
groupId | string | true | none | none |
name | string | true | none | none |
{
"name": "string",
"newName": "string",
"groupId": "string"
}
Name | Type | Required | Restrictions | Description |
---|
name | string | true | none | none |
newName | string | true | none | none |
groupId | string | true | none | none |
{
"name": "string"
}
Name | Type | Required | Restrictions | Description |
---|
name | string | true | none | none |