Fetch the payments list of a order for the current user and project

GET /users/{user_id}/projects/{project_id}/orders/{order_id}/payments

Fetch the payments list of a order for the current user and project.

Path parameters

  • user_id string Required

    User id

  • project_id string Required

    Project id

  • order_id string Required

    Order id

Responses

  • 200

    The payments list of the order

    Hide response attributes Show response attributes array[object]
    • id string(uuid)
    • amount number(float)
    • created_at string(datetime)
    • order_id string(uuid)
    • project_id string(uuid)
GET /users/{user_id}/projects/{project_id}/orders/{order_id}/payments
curl \
 -X GET https://client-subdomain.bitbond.net/api/v1/users/{user_id}/projects/{project_id}/orders/{order_id}/payments
Response examples (200)
[
  {
    "id": "string",
    "amount": 42.0,
    "created_at": "string",
    "order_id": "string",
    "project_id": "string"
  }
]
Response examples (200)
[
  {
    "id": "string",
    "amount": 42.0,
    "created_at": "string",
    "order_id": "string",
    "project_id": "string"
  }
]