Returns payments for specific project

GET /payments

Returns payments for specific project or specific user (depend's on provided param id)

Query parameters

  • project_id string

    Project ID

  • user_id string

    User ID

Responses

  • 200

    Payments

    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)
  • 404

    Resource not found.

GET /payments
curl \
 -X GET https://client-subdomain.bitbond.net/api/v1/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"
  }
]