cURL
curl --request POST \ --url https://management.sid.ai/api/v1/capsules \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "name": "<string>" }'
{ "id": "<string>", "message": "<string>" }
Create a new capsule with the API
Bearer authentication header of the form Bearer <API_KEY>. API keys can be generated in the dashboard.
<API_KEY>
Name of the capsule. Doesn't have to be unique.
Successful response
The unique ID of the capsule. Use this ID to make requests to the API. It should look something like irrotational-airfoil.
irrotational-airfoil
A nice message from the server.
Was this page helpful?