Payments API now live! Read more at API Reference
curl --request PATCH \
--url https://platform.usewarp.net/api/organizations/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>"
}
'{
"organization": {
"id": "<string>",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"member_count": 123,
"projects_count": 123,
"user_role": "admin",
"current_plan_id": "<string>",
"owner_id": "<string>"
}
}Update an organization’s details
curl --request PATCH \
--url https://platform.usewarp.net/api/organizations/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>"
}
'{
"organization": {
"id": "<string>",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"member_count": 123,
"projects_count": 123,
"user_role": "admin",
"current_plan_id": "<string>",
"owner_id": "<string>"
}
}Was this page helpful?