Management APIs
cURL
curl --request PATCH \ --url https://api.basic.tech/project/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "data": { "name": "<string>", "slug": "<string>", "website": "<string>", "profile": {} } }'
{ "data": { "id": "<string>", "name": "<string>", "slug": "<string>", "website": "<string>", "profile": {}, "updated_at": "2023-11-07T05:31:56Z" } }
Updates the details of a specific project. Only provided fields will be updated.
JWT Authorization Token header using the Bearer scheme
Unique identifier of the project
Project updated successfully