Skip to main content
GET
/
api
/
v1
/
workspaces
List all Workspaces
curl --request GET \
  --url https://api.deliveryman.ai/api/v1/workspaces/ \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": 123,
    "created_on": "2023-11-07T05:31:56Z",
    "subscription_plan": "<string>",
    "name": "<string>",
    "credits_remaining": -1,
    "next_renewal_date": "2023-11-07T05:31:56Z",
    "time_zone": "<string>",
    "total_emails_sent": 1073741823,
    "total_replies_received": 1073741823
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.deliveryman.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
header
required

Enter your API key in the format: X-Api-Key <your_key>

Response

Success

id
integer
required
read-only
created_on
string<date-time>
required
read-only
subscription_plan
string
required
read-only
name
string
Maximum string length: 300
credits_remaining
integer
Required range: -2147483648 <= x <= 2147483647
next_renewal_date
string<date-time>
billing_period
enum<string> | null
  • monthly - Monthly
  • annual - Annual
Available options:
monthly,
annual
time_zone
string
Maximum string length: 100
total_emails_sent
integer
Required range: 0 <= x <= 2147483647
total_replies_received
integer
Required range: 0 <= x <= 2147483647