# Retrieve a single payout request

## Get A Single Payout by ID

Retrieve details of a Payout Transaction by specifying the payout ID and reference ID.

### Method and URL

<mark style="color:green;">`GET`</mark> \[<mark style="color:orange;">BASE\_URL</mark>]/v1/payouts/:{uuid}?referenceId=:{referenceId}

<mark style="color:orange;">`uuid`</mark> from the response body whenever you create a Payout

<mark style="color:orange;">`referenceId`</mark> from the request body whenever you create a Payout

### Response

**Response Body**

```json
{
  "code": "00",
  "message": "Success",
  "data": {
    "merchantId": "922e39ab-7565-49f6-b84f-fb56122821ae",
    "payoutResults": {
      "totalFailedAmount": 0,
      "totalFailedCount": 0,
      "totalPendingAmount": 0,
      "totalPendingCount": 0,
      "totalSuccessAmount": 100000,
      "totalSuccessCount": 1,
      "totalCancelledCount": 0,
      "totalCancelledAmount": 0
    },
    "payouts": {
      "amount": {
        "currency": "IDR",
        "value": "100000"
      },
      "channelCode": "BRI",
      "channelInformation": {
        "accountName": "Reforza Pivot",
        "accountNumber": "888801000157508"
      },
      "created": "2024-05-13T08:21:45Z",
      "inquiryId": "d6a46a2c-1b26-40c5-9ca3-e063e69635a0",
      "description": "test Reforza Pivot",
      "referenceId": "999",
      "status": "SUCCESS",
      "reason": "",
      "updated": "2024-05-13T08:21:46Z"
    },
    "uuid": "d6a46a2c-1b26-40c5-9ca3-e063e69635a0"
  }
}
```

**Detail Parameter Response**

<table><thead><tr><th>Parameter</th><th width="110">Data Type</th><th width="128">Requirement</th><th>Description</th></tr></thead><tbody><tr><td>code</td><td>String</td><td>M</td><td>Response code</td></tr><tr><td>message</td><td>String</td><td>M</td><td>Response description</td></tr><tr><td>data</td><td>Object</td><td>M</td><td>Payout Object. Refers to <a data-mention href="/pages/b3eEJfoPKqX4cqj2bHiG">/pages/b3eEJfoPKqX4cqj2bHiG</a></td></tr></tbody></table>

## Get A Single Payout by Reference ID

Retrieve details of a Payout Transaction by specifying the payout reference ID.

### Method and URL

<mark style="color:green;">`GET`</mark> \[<mark style="color:orange;">BASE\_URL</mark>]/v1/payouts/:{referenceId}?type=single

<mark style="color:orange;">`referenceId`</mark> from the request body whenever you create a Payout

### Response

**Response Body**

```json
{
  "code": "00",
  "message": "Success",
  "data": [
    {
      "referenceId": "TestJojo24032025-001",
      "inquiryId": "",
      "channelCode": "BRI",
      "channelInformation": {
        "accountNumber": "999966660001",
        "accountName": "Dummy Simulation"
      },
      "amount": {
        "currency": "IDR",
        "value": "25000"
      },
      "description": "Test Jojo",
      "status": "SUCCESS",
      "reason": "",
      "created": "2025-03-24T06:25:43Z",
      "updated": "2025-03-24T06:25:44Z"
    }
  ]
}
```

**Detail Parameter Response**

<table><thead><tr><th>Parameter</th><th width="110">Data Type</th><th width="128">Requirement</th><th>Description</th></tr></thead><tbody><tr><td>code</td><td>String</td><td>M</td><td>Response code</td></tr><tr><td>message</td><td>String</td><td>M</td><td>Response description</td></tr><tr><td>data</td><td>Object</td><td>M</td><td>Payout Object. Refers to <a data-mention href="/pages/b3eEJfoPKqX4cqj2bHiG">/pages/b3eEJfoPKqX4cqj2bHiG</a></td></tr></tbody></table>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://pivot-payment.gitbook.io/pivot-docs/api-references/api-lists/payout-local/retrieve-a-single-payout-request.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
