Create an authenticators client

An authenticators client that is used by Verify Identity Access is created.

The documentation for this API can be found at: https://<subscription hostname>/developer/explorer/#!/Authenticator_Clients/createClient

Request
POST https://<subscription hostname>/v1.0/authenticators/clients
Authorization: Bearer <api access token>
Content-type: application/json
Accept: application/json

{
  "authorizationCodeLifetime": 600,
  "name": "ISAM VerifyAuthenticatior <subscription hostname>",
  "refreshTokenLifetime": 31557600,
  "enabled": true,
  "accessTokenLifetime": 3600
}
Response
Note: The ID of the new Authenticators Client is found in the location response header. This is the <authenticators client client id> which is used later when configuring Verify Identity Access.
201 Created
<headers>
location: https://<subscription hostname>/v1.0/authenticators/clients/<authenticators client client id>

Set the Authenticators Client metadata

The documentation for this API can be found at: https://<subscription hostname>/developer/explorer/#!/Authenticator_Clients/updateClientMetadata

Request
PUT https://<subscription hostname>/v1.0/authenticators/clients/<authenticators client id>/metadata
Authorization: Bearer <api access token>
Content-type: application/json
Accept: application/json

{
  "serviceName": "<authenticators client name>",
  "customAttributes": {}
}
Response
204 No Content
<headers>