Retrieve Credentials
List App User Credentials
get/api/v1/apps/{app_id}/app_users/{app_user_id}/credentials
Invokes the c1.api.app.v1.AppUserService.ListAppUserCredentials method.
Path Parameters
app_idstring
The appId field.
app_user_idstring
The appUserId field.
Query Parameters
page_sizenumber
optional
The pageSize field.
formatint32
page_tokenstring
optional
The pageToken field.
Returns
listarray of object
optional
The list field.
nextPageTokenstring
optional
The nextPageToken field.
Request example cURL
curl https://{tenantDomain}.conductor.one/api/v1/apps/$APP_ID/app_users/$APP_USER_ID/credentials \
-H "Authorization: Bearer $CONDUCTORONE_SDK_API_KEY"200 Example
{
"list": [
{
"encryptedData": {},
"expiresAt": "2019-12-27T18:11:19.117Z"
}
],
"nextPageToken": "nextPageToken"
}