YUMBI Gateway Docs 0.2 Help

Authentication

Yumbi Gateway uses a token-based authentication system. To authenticate with the Gateway, you must first obtain an access token by exchanging your client credentials for a token. The token is then used to authenticate all subsequent requests to the Gateway.

After authenticating, pass the token in the Authorization header of your requests. The header should be in the format Bearer <token>.

POST method/api/v1/auth/swap

Request parameters

{ "client_id": "example", "api_key": "example" }

Responses

{ "access_token": "example", "token_type": "example", "expires_in": null, "created_at": 6 }
Last modified: 05 August 2024