Application Configuration

How to get Post Issuer information.

Get your current client configuration

Get Client configurations

GET https://sec-id-api.securitize.io/v1/{clientId}

Used to display current application configuration

Path Parameters

Name
Type
Description

clientId

string

Your application Client Id provided by Securitize

Headers

Name
Type
Description

authorization

string

Your application secret provided by Securitize

{
  "status": 0,
  "data": {
    "appIcon": "string",
    "appName": "string",
    "redirectUrls": [
      "string"
    ]
  },
  "error": {},
  "success": true
}

Update your Application configurations

Patch Client Configuration

PATCH https://sec-id-api.securitize.io/v1/{clientId}

Allows update display name, icon or allowed redirect urls. Redirect urls will be used to authorize a redirection after a login process. If the URL used on the query string parameter is part of the redirectURL array, Securitize iD will redirect the user to that page.

Path Parameters

Name
Type
Description

clientId

string

Your application Client Id provided by Securitize

Headers

Name
Type
Description

Authorization

string

Your application secret provided by Securitize

Request Body

Name
Type
Description

appIcon

string

URL to image displayed on share information form

appName

string

Name displayed on share information form

redirectUrls

array

Array of allowed redirect URLs

{
  "status": 0,
  "data": {
    "appIcon": "string",
    "issuerName": "string",
    "redirectUrls": [
      "string"
    ]
  },
  "error": {},
  "success": true
}

Last updated