Payments API now live! Read more at API Reference
curl --request GET \
--url https://platform.usewarp.net/api/organizations/{id}/members \
--header 'Authorization: Bearer <token>'{
"members": [
{
"id": "<string>",
"role": "admin",
"created_at": "2023-11-07T05:31:56Z",
"user": {
"id": "<string>",
"email": "jsmith@example.com",
"onboarding_completed": true,
"is_admin": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"first_name": "<string>",
"last_name": "<string>"
}
}
]
}Retrieve all members of an organization
curl --request GET \
--url https://platform.usewarp.net/api/organizations/{id}/members \
--header 'Authorization: Bearer <token>'{
"members": [
{
"id": "<string>",
"role": "admin",
"created_at": "2023-11-07T05:31:56Z",
"user": {
"id": "<string>",
"email": "jsmith@example.com",
"onboarding_completed": true,
"is_admin": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"first_name": "<string>",
"last_name": "<string>"
}
}
]
}Was this page helpful?