Funds Availability
Check
This endpoint is used to check availability of funds for a specific account.
CURL
curl -i \
-H "Authorization: Bearer eyJhbGciOiJSUzI1NiJ9.eyJkYXRhIjp7ImFtb3VudCI6MTAwLCJjdXJyZW5jeV9jb2RlIjoiR0JQIiwiYWNjb3VudCI6Ijg0NTcyNDg2In0sImV4cCI6MTczMjIyMzU4OCwiaXNzIjoicHJpb3JhLnNhbHRlZGdlLmNvbSJ9.RKLkuXB8ALwdquejDd-gyAod2iTTB1Ul4pMUngMkOllqdzMh7YUrq4lIfhrEHyDmkpDswrrC4yCUWQd-Ob9E7eMiYzePrMz4ec76khpz0BJhPWkQ-pkwOe8JBM1OX1kcGwufrwPw-iMA6cx7o36yzitsEHiTlpCv1YTXKwRs3f7KdCPKsZo1WV0u4RnYA0ke3Kx2csEX25bAYjMNIJdOomWU6FcJGkAve66GUo-3u9DqR7Ybe15UQkzAaUylW9h9e7_d0-EzOuSugvSYG23lXp9urvKDzYiaL7wm8jS1nLO6M1__jOFvbUj887zCfKpnPCUCvy9oew2byqPB-smeOg" \
-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. |
TokenNotFound | 401 | Token specified in request does not exist or cannot be retrieved. |
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. |
×