Skip to main content
GET
/
v1
/
{tenantUUID}
/
market
/
payouts_invoices
/
{payoutInvoiceUuid}
Get single payout invoice
curl --request GET \
  --url https://apigw.ipxo.com/billing/v1/{tenantUUID}/market/payouts_invoices/{payoutInvoiceUuid} \
  --header 'Authorization: Bearer <token>'
{
  "uuid": "string",
  "invoice_number": "string",
  "tenant_uuid": "string",
  "total": 0,
  "fees": 0,
  "status": "paid",
  "date": 0,
  "date_paid": 0,
  "payment_confirmation_uuid": "string",
  "items": [
    {
      "uuid": "string",
      "type": "payout",
      "description": "string",
      "period_start": 0,
      "period_end": 0,
      "amount": 0,
      "cidr": 0,
      "address": "string",
      "service_uuid": "string",
      "start": 0,
      "end": 0
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

tenantUUID
string
required

UUID

Pattern: ^[a-zA-Z0-9]{8}\-[a-zA-Z0-9]{4}\-[a-zA-Z0-9]{4}\-[a-zA-Z0-9]{4}\-[a-zA-Z0-9]{12}$
payoutInvoiceUuid
string
required

UUID

Pattern: ^[a-zA-Z0-9]{8}\-[a-zA-Z0-9]{4}\-[a-zA-Z0-9]{4}\-[a-zA-Z0-9]{4}\-[a-zA-Z0-9]{12}$

Response

Payout

uuid
string<uuid>
invoice_number
string
tenant_uuid
string<uuid>
total
number<float>
fees
number<float>
status
enum<string>
Available options:
paid,
unpaid
date
integer
date_paid
integer
payment_confirmation_uuid
string<uuid>
items
object[]