Skip to main content
GET
/
v1
/
credentials
List Verifiable Credentials
curl --request GET \
  --url https://grantex-auth-dd4mtrt2gq-uc.a.run.app/v1/credentials \
  --header 'Authorization: Bearer <token>'
{
  "credentials": [
    {
      "id": "<string>",
      "grantId": "<string>",
      "type": "<string>",
      "status": "<string>",
      "issuedAt": "2023-11-07T05:31:56Z",
      "expiresAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Developer API key

Query Parameters

grantId
string

Filter by grant ID

principalId
string

Filter by principal ID

status
enum<string>

Filter by status

Available options:
active,
revoked

Response

200 - application/json

List of credentials

credentials
object[]