Create offer exchange
The endpoint is designed for users to create new exchange offers in the system, specifying details like currencies, amounts, and more, and upon successful creation, the system returns details of the created exchange offer, including its expiration period, exchange rate, and other parameters.
After confirming the phone number or after user authorization, you will receive an access_token. You need to enter this access_token in the
Token
field
The offer is valid for 20 seconds. After this time, the offer becomes invalid, and to create a new offer, you need to request its creation again
This endpoint is accessible for
KYC_0
level and higher
The body parameters
To obtain the cardId
, you can use the endpoint GET /v3/payin/data. This endpoint retrieves the necessary cardId
for your operation.
Request Sample: cURL
At the time of sending the request, the curl command should be as follows:
curl --request POST \
--url https://api.vault.sandbox.testessential.net/v1/mobile/exchange/offer \
--header 'accept: application/json' \
--header 'authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIwNTFhYTc3Mi0yNDk4LTQ0ZTEtODdmYi0zYzNhZDdlMTY1ODgiLCJleHAiOjE3MTI0MTM3NTksImlhdCI6MTcxMjMyNzM1OX0.8E4JD3vvmsVHTKlqe51IkBjlfxvTcaGVnY8YU8O9CMU' \
--header 'content-type: application/json' \
--data '
{
"amountTo": 0.0176517,
"amountFrom": 100,
"currencyTo": "LTC",
"currencyFrom": "USDT"
}
'
After entering the phone number and password into the respective fields, you need to click the Try It!
button.
This action initiates the process of sending data to the server and receiving a response from the API using the provided credentials.
Response Example
Successful execution of the request indicates that the operation was successful.
{
"offerId": 9501,
"expirationDateTime": "2024-04-05T16:14:28.018Z",
"exchangeRate": 0.01005330199165145,
"validSeconds": 20,
"sourceCurrencyAmount": {
"amount": 100,
"currencyCode": "USDT"
},
"targetCurrencyAmount": {
"amount": 1.00533019,
"currencyCode": "LTC"
}
}
To obtain additional information about the RESPONSE
, you need to click on the Headers
button.
This will allow you to view the server response headers and gain a more detailed understanding of the data returned in response to your request.
Updated 7 months ago