| Environment | Base URL | Description |
|---|---|---|
| Sandbox | https://pruebas.elmomento.io/integrations | Use this environment for all initial development and testing. No real transactions will be processed. |
| Production | https://api.trade.elmomento.io/integrations | The live environment for processing real user requests. |
| Header | Value | Description |
|---|---|---|
| Content-Type | application/json | Indicates the request body format is JSON. |
| M-Signature | [HMAC SHA512 HASH] | The signature generated from the request body. |
curl -X POST \
https://pruebas.elmomento.io/api/integrations/deposit_orders/ \
-H 'Content-Type: application/json' \
-H 'M-Signature: 1a2b3c...' \
-d '{
"amount": 500,
"orderID": "Somerandomstring",
"currency": "DOP",
"callback_url": "https://google.com",
"request": {
"email": "ceterasddsare@hotmail.com",
"id_number": "00100000001"
}
}'