light-mode-image
Learn
API ReferenceHolder applications

Create a holder application

Roles

adminholder

Analytics Events

CREDENTIAL_HOLDER_APPLICATION_CREATE_STARTCREDENTIAL_HOLDER_APPLICATION_CREATE_SUCCESSCREDENTIAL_HOLDER_APPLICATION_CREATE_FAIL
POST/v1/holder/applications

Creates a holder application. Once created, application instances can be registered and interact with the MATTR VII platform (for example, to claim credentials).

Analytic events

  • CREDENTIAL_HOLDER_APPLICATION_CREATE_START
  • CREDENTIAL_HOLDER_APPLICATION_CREATE_SUCCESS
  • CREDENTIAL_HOLDER_APPLICATION_CREATE_FAIL

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

Holder application payload

TypeScript Definitions

Use the request body type in TypeScript.

Configuration for a registered holder application.

Configuration for a holder iOS application.

Response Body

application/json

application/json

curl -X POST "https://example.com/v1/holder/applications" \  -H "Content-Type: application/json" \  -d '{    "name": "string",    "clientId": "string",    "type": "ios",    "bundleId": "string",    "teamId": "string"  }'
{  "id": "string",  "name": "string",  "clientId": "string",  "type": "ios",  "bundleId": "string",  "teamId": "string",  "maxTimeOfflineInSecs": 604800,  "appAttest": {    "required": true,    "environment": "development"  }}

How would you rate this page?