Skip to main content

Generate access token

POST 

/v1/oauth/token

Generating an OAuth 2.0 access token is a fundamental step in securing access to protected resources within financial systems and APIs. Typically, this process involves the client application presenting its credentials, such as a client ID and client secret, to the authorization server.

Upon successful authentication, the authorization server validates the client's credentials and issues an access token. This token serves as a bearer credential, granting the client application permission to access specified resources on behalf of the user. The access token is accompanied by metadata indicating its scope, expiry time, and potentially other relevant attributes. Once obtained, the client application includes the access token in subsequent requests to the resource server, effectively proving its authorization to access the requested resources.

This robust OAuth 2.0 access token mechanism ensures secure and controlled access to sensitive financial data and functionalities while maintaining user privacy and security.

Request

Body

required

    client_id stringrequired

    Your client id.

    client_secret stringrequired

    Your client secret.

Responses

OK.

Schema

    object

Loading...