curl --request POST \
--url https://api.mansafinance.co/api/v2/liquidity/utilization/proofs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--header 'x-api-key: <api-key>' \
--form 'data=<string>' \
--form additionalProperties='@example-file'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"amount": 123,
"currency": "<string>",
"corridors": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"routes": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
]
}
],
"created_at": "2023-11-07T05:31:56Z"
}Submit a utilization proof record with supporting documents. The request uses multipart/form-data. The data field must be a JSON-encoded string containing the utilization payload. Each proof document is attached as a separate file field named after the route or corridor it belongs to (e.g. settlement_<routeId>, payment_<corridorId>).
curl --request POST \
--url https://api.mansafinance.co/api/v2/liquidity/utilization/proofs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--header 'x-api-key: <api-key>' \
--form 'data=<string>' \
--form additionalProperties='@example-file'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"amount": 123,
"currency": "<string>",
"corridors": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"routes": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
]
}
],
"created_at": "2023-11-07T05:31:56Z"
}API key for authentication
JWT token following RFC001 specification