Get dispute by escrow ID
curl --request GET \
--url https://staging.api.payluk.ng/v1/escrow/dispute/get/{escrowId} \
--header 'Authorization: Bearer <token>' \
--header 'customer-id: <customer-id>'import requests
url = "https://staging.api.payluk.ng/v1/escrow/dispute/get/{escrowId}"
headers = {
"customer-id": "<customer-id>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'customer-id': '<customer-id>', Authorization: 'Bearer <token>'}
};
fetch('https://staging.api.payluk.ng/v1/escrow/dispute/get/{escrowId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://staging.api.payluk.ng/v1/escrow/dispute/get/{escrowId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"customer-id: <customer-id>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://staging.api.payluk.ng/v1/escrow/dispute/get/{escrowId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("customer-id", "<customer-id>")
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://staging.api.payluk.ng/v1/escrow/dispute/get/{escrowId}")
.header("customer-id", "<customer-id>")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://staging.api.payluk.ng/v1/escrow/dispute/get/{escrowId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["customer-id"] = '<customer-id>'
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"status": 200,
"message": "Escrow dispute retrieved successfully",
"data": {
"id": "6948fb43cb570eeef76285e3",
"amount": 1000,
"purpose": "iPhone 13 Pro Max",
"description": "Black Titanium, White Titanium, Natural Titanium, Desert Titanium\n\nTitanium design\nLatest-generation Ceramic Shield front\nTextured matt glass back",
"whoPays": "buyer",
"imageUrl": [
"https://mediacloud.me/media/bWVkaWEvaW1hZ2VzL29wdGltaXplL3Z0VjhwN0psSzlIMzhEVWxicWpmV1JZdUpuSUZNWlhEdU03UkVmeHEuanBn.jpg"
],
"fee": 15,
"paymentToken": "PY_KrWLqPd90314",
"paidAt": "1766391073",
"status": "DISPUTED",
"state": "OPENED",
"logs": [
"DISPUTED"
],
"channel": "API",
"isSeller": false,
"dispute": [
{
"name": "Ezumah",
"profile": null,
"message": "Item not as described; the seal was broken on arrival",
"proofUrl": "https://mediacloud.me/media/dispute-evidence.jpg",
"type": "buyer",
"createdAt": "2025-12-22 08:20:00"
}
],
"paymentDetails": {
"id": "6948fd20cb570eeef76286a4",
"amount": 1015,
"status": "success",
"reference": "9500364766547485",
"fee": 15,
"transactionType": "escrow",
"currency": "NGN",
"createdAt": "2025-12-22T08:11:12.605Z"
},
"category": null,
"completedAt": null,
"approvedClaimBy": null,
"refundedBy": null,
"maxDelivery": 20,
"deliveryTimeline": "minutes",
"totalQuantity": 1,
"settlementType": "STANDARD",
"milestones": [],
"createdAt": "2025-12-22T08:03:15.124Z",
"updatedAt": "2025-12-22T08:14:49.601Z"
}
}{
"status": 400,
"message": "Access denied",
"data": {}
}7. Release & resolve: Disputes
Get dispute by escrow ID
GET
/
v1
/
escrow
/
dispute
/
get
/
{escrowId}
Get dispute by escrow ID
curl --request GET \
--url https://staging.api.payluk.ng/v1/escrow/dispute/get/{escrowId} \
--header 'Authorization: Bearer <token>' \
--header 'customer-id: <customer-id>'import requests
url = "https://staging.api.payluk.ng/v1/escrow/dispute/get/{escrowId}"
headers = {
"customer-id": "<customer-id>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'customer-id': '<customer-id>', Authorization: 'Bearer <token>'}
};
fetch('https://staging.api.payluk.ng/v1/escrow/dispute/get/{escrowId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://staging.api.payluk.ng/v1/escrow/dispute/get/{escrowId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"customer-id: <customer-id>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://staging.api.payluk.ng/v1/escrow/dispute/get/{escrowId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("customer-id", "<customer-id>")
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://staging.api.payluk.ng/v1/escrow/dispute/get/{escrowId}")
.header("customer-id", "<customer-id>")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://staging.api.payluk.ng/v1/escrow/dispute/get/{escrowId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["customer-id"] = '<customer-id>'
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"status": 200,
"message": "Escrow dispute retrieved successfully",
"data": {
"id": "6948fb43cb570eeef76285e3",
"amount": 1000,
"purpose": "iPhone 13 Pro Max",
"description": "Black Titanium, White Titanium, Natural Titanium, Desert Titanium\n\nTitanium design\nLatest-generation Ceramic Shield front\nTextured matt glass back",
"whoPays": "buyer",
"imageUrl": [
"https://mediacloud.me/media/bWVkaWEvaW1hZ2VzL29wdGltaXplL3Z0VjhwN0psSzlIMzhEVWxicWpmV1JZdUpuSUZNWlhEdU03UkVmeHEuanBn.jpg"
],
"fee": 15,
"paymentToken": "PY_KrWLqPd90314",
"paidAt": "1766391073",
"status": "DISPUTED",
"state": "OPENED",
"logs": [
"DISPUTED"
],
"channel": "API",
"isSeller": false,
"dispute": [
{
"name": "Ezumah",
"profile": null,
"message": "Item not as described; the seal was broken on arrival",
"proofUrl": "https://mediacloud.me/media/dispute-evidence.jpg",
"type": "buyer",
"createdAt": "2025-12-22 08:20:00"
}
],
"paymentDetails": {
"id": "6948fd20cb570eeef76286a4",
"amount": 1015,
"status": "success",
"reference": "9500364766547485",
"fee": 15,
"transactionType": "escrow",
"currency": "NGN",
"createdAt": "2025-12-22T08:11:12.605Z"
},
"category": null,
"completedAt": null,
"approvedClaimBy": null,
"refundedBy": null,
"maxDelivery": 20,
"deliveryTimeline": "minutes",
"totalQuantity": 1,
"settlementType": "STANDARD",
"milestones": [],
"createdAt": "2025-12-22T08:03:15.124Z",
"updatedAt": "2025-12-22T08:14:49.601Z"
}
}{
"status": 400,
"message": "Access denied",
"data": {}
}Authorizations
Your secret key as a Bearer token. The key prefix selects the environment: sk_test_... (test) or sk_live_... (live).
Headers
The merchant customer this request acts on behalf of.
Path Parameters
The escrow's unique identifier.
⌘I