GET
/
v1
/
workspaces
/
{workspace_id}
/
invoices
curl --request GET \
  --url https://api.ziplink.click/v1/workspaces/{workspace_id}/invoices
{
  "items": [
    {
      "created_at": "2023-11-07T05:31:56Z",
      "currency": "USD",
      "generated_at": "2023-11-07T05:31:56Z",
      "id": "ab782971-4d79-47ab-8685-77cf5a34b2bb",
      "status": "paid",
      "total": 1000,
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "page_number": 5,
    "page_size": 100,
    "total": 1000
  }
}

Path Parameters

workspace_id
string
required

ID of the workspace.

Example:

"ab782971-4d79-47ab-8685-77cf5a34b2bb"

Query Parameters

offset
integer
default:0

Number of resources to skip.

Required range: x >= 0
limit
integer
default:100

Number of resources to return.

Required range: 1 <= x <= 1000

Response

200
application/json
OK
items
object[]
required
pagination
object
required