Skip to main content
POST
/
v1
/
escrow
/
dispute
/
resolve
/
{escrowId}
Resolve dispute
curl --request POST \
  --url https://staging.api.payluk.ng/v1/escrow/dispute/resolve/{escrowId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'resolution=Refund approved after review' \
  --form status=REFUNDED \
  --form file='@example-file'
{
  "status": 200,
  "message": "Dispute resolution submitted successfully",
  "data": {
    "id": "665f1b2c9a1e4d0012ab3c10",
    "status": "REFUNDED",
    "state": "CLOSED"
  }
}

Authorizations

Authorization
string
header
required

Your secret key as a Bearer token. The key prefix selects the environment: sk_test_... (test) or sk_live_... (live).

Path Parameters

escrowId
string
required

The escrow's unique identifier.

Body

multipart/form-data
resolution
string
required
Example:

"Refund approved after review"

status
enum<string>
required
Available options:
COMPLETED,
REFUNDED
Example:

"REFUNDED"

file
file

Optional supporting document.

Response

Dispute resolved.

status
integer
Example:

200

message
string
Example:

"Operation successful"

data
object