Get App Client
GET/app-clients/:appClientId
Get app client
Request
Path Parameters
appClientId stringrequired
The client id of application.
Responses
- 200
- 404
- application/json
- Schema
- Example (from schema)
- Example
Schema
data objectrequired
Data of the app client.
clientId stringrequired
clientName stringrequired
callbackUrls string[]required
logoutUrls string[]required
{
"data": {
"clientId": "string",
"clientName": "string",
"callbackUrls": [
"string"
],
"logoutUrls": [
"string"
]
}
}
{
"data": {
"clientId": "16tofxxxxxxxxxxm",
"clientName": "ApiServiceUserPoolClient",
"callbackUrls": [
"http://localhost:8080"
],
"logoutUrls": [
"http://localhost:8080"
]
}
}
The resource hasn't found.
- application/json
- Schema
- Example (from schema)
- Example
Schema
error stringrequired
The resource hasn't found.
message stringrequired
The resource hasn't found message.
{
"error": "string",
"message": "string"
}
{
"error": "ResourceNotFound",
"message": "The requested resource could not be found."
}
Loading...