Funds Availability
Check
This endpoint is used to check availability of funds for a specific account.
CURL
![]()
curl -i \
-H "Authorization: Bearer eyJhbGciOiJSUzI1NiJ9.eyJkYXRhIjp7ImFtb3VudCI6MTAwLCJjdXJyZW5jeV9jb2RlIjoiR0JQIiwiYWNjb3VudCI6Ijg0NTcyNDg2In0sImV4cCI6MTc4NzU3Mzg5MCwiaXNzIjoicHJpb3JhLnNhbHRlZGdlLmNvbSJ9.hgr5IMofNTXoXaBP-5QlNNd8u323R25KNcwa5VJvT_P768Dfv6XHHxCD07UlXs_2lwoXVToy6LOUPk2bsS4yrLaI7aDU-UAXD0Rji1B4Rs-a3LbEftoUyzu0B7N2cdgr2KR0t9gbZtZ3OhER-8Kn9o3XoFMPzmdYygzZuM00ncOPcIMpeKZfQuIOxQXM1EMQW8rG1pfSLlyS_0rluskkkXQrONU4bo_Iop5-O6EfZfmTatSW0s8h4CDnH_zfeuYEnGqra4n10Sdhq7ddhOjo-E8SJvu7nb4gfN2oWb0GsepB5wZUSA1MNg7vycOCk4ktU7agTEPxQYqaH1PBzw7qWQ" \
-H "App-Id: lL8mM9_EdRNqIkMDkRJNlg" \
-H "App-Secret: FACYQz_tXS12Zq4shniuuA" \
-H "Access-Token: a042816d06ffbb20160005d5ea1ae3d89d565158025a28b7476312fbf6754d5b69b0a699729169a28068218134878990e263f0a2cb0908c68a9abd627ba56c64" \
-H "Client-Request-Id: 13" \
-X POST "/api/v2/payments/check_funds"
Example of request parameters
![]()
{"data":{"amount":100,"currency_code":"GBP","account":"84572486"},"exp":1574093211}
Example of response
![]()
{"data":{"session_secret":"J9nZdqgqUycptyXUczBU"}}
Request
POST
/api/v2/payments/check_funds
Headers
| Header | Type | Description |
|---|---|---|
Authorization
|
string, required |
JSON Web Token containing payload, signed using RSA256 and application.private_key.
Can raise:
AuthorizationMissing
|
App-Id
|
string, required |
Application’s app_id from connection details tab.
Can raise:
OauthAppNotFound, CertificateNotFound
|
App-Secret
|
string, required |
Application’s app_secret from connection details tab.
|
Access-Token
|
string, required | Token for which we are requesting info. Can raise: TokenMissing, TokenNotFound, TokenRevoked, TokenExpired |
Client-Request-Id
|
string, optional |
Request identifier. If present, it will be returned within meta field in response.
|
Unpacked Request Authorization
Response
Upon successful request, 200 status code will be returned. See ‘Related Errors’ table for other possibilities.
Related Errors
| Class | Code | Description |
|---|---|---|
| TokenMissing | 400 | This request cannot be performed without Access_Token header. |
| AuthorizationMissing | 401 | Authorization header is missing. |
| TokenRevoked | 401 | Token specified in request is revoked and cannot be used anymore. |
| TokenExpired | 401 | Token specified in request is expired and cannot be used. |
| UnknownCurrency | 404 | Unknown Currency code |
| OauthAppNotFound | 404 | OAuth Application specified in request does not exist or cannot be retrieved. |
| CertificateNotFound | 404 | Certificate has no permissions. |
| TokenNotFound | 404 | Token specified in request does not exist or cannot be retrieved. |
×