Create credential type
Creates a new credential type in the requested ecosystem.
Analytic events
- ECOSYSTEM_CREDENTIAL_CREATE_START
- ECOSYSTEM_CREDENTIAL_CREATE_SUCCESS
- ECOSYSTEM_CREDENTIAL_CREATE_FAIL
path Parameters
Request Body schema: application/jsonrequired
Credential type created
Bad Request. The request was malformed or missing required parameters.
Not Found. The specified resource was not found.
Internal Server Error. An unexpected error occurred.
- Payload
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
{- "profile": "compact",
- "type": "DriverLicense",
- "name": "Driver's License"
}
- 201
- 400
- 404
{- "id": "599bf148-d711-405a-a20b-9c8a87ac8850",
- "ecosystemId": "87880d7e-a4d0-462e-8383-3f1e5e16865d",
- "profile": "compact",
- "type": "DriverLicense",
- "name": "Driver's License"
}
Retrieve credential types
Retrieves a list of credential types from the requested ecosystem.
Analytic events
- ECOSYSTEM_CREDENTIAL_RETRIEVE_LIST_START
- ECOSYSTEM_CREDENTIAL_RETRIEVE_LIST_SUCCESS
- ECOSYSTEM_CREDENTIAL_RETRIEVE_LIST_FAIL
path Parameters
Credential types retrieved
Bad Request. The request was malformed or missing required parameters.
Not Found. The specified resource was not found.
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
- 200
- 400
- 404
{- "data": [
- {
- "id": "599bf148-d711-405a-a20b-9c8a87ac8850",
- "ecosystemId": "87880d7e-a4d0-462e-8383-3f1e5e16865d",
- "profile": "compact",
- "type": "DriverLicense",
- "name": "Driver's License"
}
], - "nextCursor": "Y3JlYXRlZEF0PTIwMjAtMDgtMjVUMDY6NDY6MDkuNTEwWiZpZD1hNjZmZmVhNS04NDhlLTQzOWQtODBhNC1kZGE1NWY1M2UzNmM"
}
Retrieve credential type
Retrieves a credential type from the requested ecosystem by its ID.
Analytic events
- ECOSYSTEM_CREDENTIAL_RETRIEVE_START
- ECOSYSTEM_CREDENTIAL_RETRIEVE_SUCCESS
- ECOSYSTEM_CREDENTIAL_RETRIEVE_FAIL
Credential type retrieved
Bad Request. The request was malformed or missing required parameters.
Not Found. The specified resource was not found.
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
- 200
- 400
- 404
{- "id": "599bf148-d711-405a-a20b-9c8a87ac8850",
- "ecosystemId": "87880d7e-a4d0-462e-8383-3f1e5e16865d",
- "profile": "compact",
- "type": "DriverLicense",
- "name": "Driver's License"
}
Delete credential type
Deletes a credential type from the requested ecosystem by its ID.
Analytic events
- ECOSYSTEM_CREDENTIAL_DELETE_START
- ECOSYSTEM_CREDENTIAL_DELETE_SUCCESS
- ECOSYSTEM_CREDENTIAL_DELETE_FAIL
Credential type deleted
Bad Request. The request was malformed or missing required parameters.
Not Found. The specified resource was not found.
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
- 400
- 404
{- "code": "string",
- "message": "string",
- "details": [
- {
- "value": "string",
- "msg": "Invalid value",
- "param": "id",
- "location": "body"
}
]
}