Managing Projects
With the BitBar REST API, you can get, create, update, and delete your projects.
Create a project
Note
The name
parameter is optional. The name is generated automatically when the parameter value is empty.
curl -X POST -u <api-key>: https://cloud.bitbar.com/api/me/projects -d 'name=NAME'
Get a project
curl -u <api-key>: https://cloud.bitbar.com/api/me/projects/ID
List all projects
curl -u <api-key>: https://cloud.bitbar.com/api/me/projects
Delete a project
curl -X DELETE -u <api-key>: https://cloud.bitbar.com/api/me/projects/ID
Update a project
Note
All parameters are optional.
curl -X POST -u <api-key>: https://cloud.bitbar.com/api/me/projects/ID -d "name=NAME&description=DESCRIPTION&archivingStrategy=ARCHIVING_STRATEGY&archivingItemCount=ARCHIVING_ITEM_COUNT"