Skip to main content
GET
/
v3
/
developer
/
oauth-billing
/
settlements
List developer OAuth billing settlements
curl --request GET \
  --url https://api.scalev.com/v3/developer/oauth-billing/settlements \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "timestamp": "2023-11-07T05:31:56Z",
      "settlement_rail": "xendit",
      "status": "<string>",
      "amount": 123,
      "currency": "<string>",
      "balance_before": 123,
      "balance_after": 123,
      "description": "<string>",
      "xendit_transfer_id": "<string>",
      "business_id": 123,
      "metadata": {}
    }
  ],
  "is_paginated": true,
  "has_next": true,
  "has_previous": true,
  "next_cursor": "<string>",
  "previous_cursor": "<string>",
  "page_size": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page_size
integer

Cursor page size.

Required range: x >= 1
next_cursor
string

Opaque cursor for the next page.

previous_cursor
string

Opaque cursor for the previous page.

status
string

Filter by settlement status.

Response

OAuth billing settlement collection

Paginated list payload for v3.

data
object[]
required
is_paginated
enum<boolean>
required
Available options:
true
Example:

true

has_next
boolean
has_previous
boolean
next_cursor
string | null
previous_cursor
string | null
page_size
integer