Fractal ID documentation
Production client dashboardStaging client dashboard
  • Introduction
  • Getting started
  • KYC levels
  • OAuth 2.0 scopes
  • Production and staging URLs
  • Client dashboard
  • Migration to Kraken
  • User integration
    • User authorization
    • User information retrieval
    • Webhooks
      • Available notifications
      • Delivery
      • Securing webhooks
    • Mobile app integration
    • Embedded Journey Iframe
  • Back-office integration
    • Client authorization
    • Application statistics
  • Legacy Integrations
    • Fractal Credentials API
  • Troubleshooting
    • Common issues
Powered by GitBook
On this page
  • Client credentials grant flow

Was this helpful?

  1. Back-office integration

Client authorization

PreviousEmbedded Journey IframeNextApplication statistics

Last updated 5 months ago

Was this helpful?

In order to access information related to your application, you must obtain an access token using the .

Client credentials grant flow

POST https://AUTH_DOMAIN/oauth/token

Path Parameters

Name
Type
Description

client_id

string

Your API application ID

client_secret

string

Your API application secret

scope

string

A space-separated list of authorization scopes to request. If not mentioned, it defaults to uid:read. You'll need to provide a token with the client.stats:read scope in order to access application statistics for example.

grant_type

string

client_credentials

{
  "access_token":"OUuf_tJs-J2AAxjWr0JHvzFure5Eb7KMUQRO0jpqXWc",
  "token_type":"Bearer",
  "expires_in":7200,
  "scope":"client.stats:read",
  "created_at":1554400723
}

client credentials grant