Main
/Payments
/AML links
Copy page
A payment can fall under AML verification and move to the locked status. To unlock the funds, the payer must complete a AML questionnaire — KYC or SoF (Source of Funds).
| Name | Parameter type | Definition |
|---|---|---|
| uuid | stringuuidrequired_without: order_id | Invoice uuid |
| order_id | stringrequired_without: uuid | Invoice order ID |
curl https://api.heleket.com/v1/payment/aml-links \
-X POST \
-H 'merchant: 8b03432e-385b-4670-8d06-064591096795' \
-H 'sign: fe99035f86fa436181717b302b95bacff1' \
-H 'Content-Type: application/json' \
-d '{
"order_id": "order-42"
}'Copy| Name | Definition |
|---|---|
| link | Link to the AML questionnaire that is passed to the user |
| expired_at | Link expiration date and time in ISO 8601 (UTC) |
| status | Questionnaire completion status |
| Name | Definition |
|---|---|
| init | Link created, the questionnaire has not been started yet |
| pending | The questionnaire is in progress |
| completed | The questionnaire is completed |
| expired | The completion period has expired |
1{
2 "state": 0,
3 "result": [
4 {
5 "link": "https://some.link",
6 "expired_at": "2025-10-23T18:23:40.000000Z",
7 "status": "completed"
8 },
9 {
10 "link": "https://some.link",
11 "expired_at": "2026-05-13T11:32:38.000000Z",
12 "status": "init"
13 }
14 ]
15}Copy