Fetch a User Payout details based on the id

GET /payouts/{payout_id}/user_payouts/{id}

Fetch a User Payout details based on the id.

Path parameters

  • payout_id string Required

    Payout id

  • id string Required

    Resource ID

Responses

  • 200

    The User Payout with the id

    Hide response attributes Show response attributes object
    • id string(uuid)
    • user_id string
    • token_amount number(float)
    • payout_amount number(float)
    • wallet_address_id string(uuid)
    • wallet_address string
    • created_at string(datetime)
  • 401

    Authorization information is missing or invalid.

  • 404

    Resource not found.

GET /payouts/{payout_id}/user_payouts/{id}
curl \
 -X GET https://client-subdomain.bitbond.net/api/v1/payouts/{payout_id}/user_payouts/{id}
Response examples (200)
{
  "id": "string",
  "user_id": "string",
  "token_amount": 42.0,
  "payout_amount": 42.0,
  "wallet_address_id": "string",
  "wallet_address": "string",
  "created_at": "string"
}
Response examples (200)
{
  "id": "string",
  "user_id": "string",
  "token_amount": 42.0,
  "payout_amount": 42.0,
  "wallet_address_id": "string",
  "wallet_address": "string",
  "created_at": "string"
}