GET
/
v1
/
workspaces
curl --request GET \
  --url https://api.ziplink.click/v1/workspaces \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "billing_address_city": "cus_JgZ1z1z1z1z1z1",
      "billing_address_country": "cus_JgZ1z1z1z1z1z1",
      "billing_address_line_1": "cus_JgZ1z1z1z1z1z1",
      "billing_address_line_2": "cus_JgZ1z1z1z1z1z1",
      "billing_address_postal_code": "cus_JgZ1z1z1z1z1z1",
      "billing_address_state": "cus_JgZ1z1z1z1z1z1",
      "created_at": "2023-11-07T05:31:56Z",
      "email": "[email protected]",
      "id": "ab782971-4d79-47ab-8685-77cf5a34b2bb",
      "name": "ACME Inc.",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "page_number": 5,
    "page_size": 100,
    "total": 1000
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

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

A workspace in the system.

pagination
object
required