Skip to content
  • Auto
  • Light
  • Dark
Get Started

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.

Hide ParametersShow Parameters
idstring
optional

A unique identifier of the credential.

appIdstring
optional

The ID of the application.

appUserIdstring
optional

A unique identifier of the application user.

createdAtstring
optional
formatdate-time
deletedAtstring
optional
formatdate-time
encryptedDataobject
optional

EncryptedData is a message that contains encrypted bytes and metadata.

Hide ParametersShow Parameters
descriptionstring
optional

The human-readable description of the encrypted data.

encryptedBytesstring
optional

The encrypted bytes.

formatbase64
keyIdstring
optional

The key ID used to encrypt the data.

namestring
optional

The human-readable name of the encrypted data.

providerstring
optional

The encryption provider used to encrypt the data.

schemastring
optional

The (optional) JSON schema of the encrypted data.

expiresAtstring
optional
formatdate-time
updatedAtstring
optional
formatdate-time
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"
}