Securitize Connect API
  • Securitize iD
  • General information
  • Scope of Access
  • User Interface & Landing page
  • Accessing the APIs
  • OAuth 2.0
    • Authentication
    • Access Token
    • Refresh Access Token
    • Application Configuration
  • Verification Information
  • Investor Information
    • New Investor Example
    • Individual Investor Example
    • Entity Investor Example
  • Investor Documents
  • Legal Signers
  • Verification Details
  • Wallets
  • Whitelisting
    • Whitelisting redirected URLs
Powered by GitBook
On this page
  • Get your current client configuration
  • Get Client configurations
  • Update your Application configurations
  • Patch Client Configuration

Was this helpful?

  1. OAuth 2.0

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
}
PreviousRefresh Access TokenNextInvestor Information

Last updated 3 years ago

Was this helpful?