Execute offer exchange

The endpoint is designed for executing an existing currency exchange offer within a mobile application.

πŸ“˜

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_1 level and higher

The body parameters

You offerId can be obtained using the endpoint POST /v1/mobile/exchange/offer .

Request Sample: cURL

At the time of sending the request, the curl command should be as follows:

curl --request PUT \
     --url https://api.vault.sandbox.testessential.net/v1/mobile/exchange/offer/9504 \
     --header 'accept: application/json' \
     --header 'authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIwNTFhYTc3Mi0yNDk4LTQ0ZTEtODdmYi0zYzNhZDdlMTY1ODgiLCJleHAiOjE3MTI0MTM3NTksImlhdCI6MTcxMjMyNzM1OX0.8E4JD3vvmsVHTKlqe51IkBjlfxvTcaGVnY8YU8O9CMU'

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.

{
  "status": "SUCCESS",
  "offerId": 5543253425482
}

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.