Fetch a project payouts's details based on the id

GET /projects/{project_id}/payouts/{id}

Fetch a project payouts's details based on the id.

Path parameters

  • project_id string Required

    Project id

  • id string Required

    Resource ID

Responses

  • 200

    The payout with the id

    Hide response attributes Show response attributes object
    • id string(uuid)
    • project_id string(uuid)
    • name string
    • created_at string(datetime)
    • snapshot_at string(datetime)
    • distribution_amount number
    • taxable_share_bps number
  • 401

    Authorization information is missing or invalid.

  • 404

    Resource not found.

GET /projects/{project_id}/payouts/{id}
curl \
 -X GET https://client-subdomain.bitbond.net/api/v1/projects/{project_id}/payouts/{id}
Response examples (200)
{
  "id": "string",
  "project_id": "string",
  "name": "string",
  "created_at": "string",
  "snapshot_at": "string",
  "distribution_amount": 42.0,
  "taxable_share_bps": 42.0
}
Response examples (200)
{
  "id": "string",
  "project_id": "string",
  "name": "string",
  "created_at": "string",
  "snapshot_at": "string",
  "distribution_amount": 42.0,
  "taxable_share_bps": 42.0
}