Instance
Billable Item
Booking
Calendar Subscription
Invoice
Quote
Invoice Template
Project
Time Activity
Time Activity
Create Time Activity
WRITE
access to the ADMIN
module is required to access this endpointPOST
/
v2
/
time-activity
Copy
curl --request POST \
--url https://api.sonderplan.com/v2/time-activity \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "Sound Post",
"description": "Recording, mixing and exporting from Pro Tools and other DAWs"
}'
Copy
{
"success": {
"id": 2384
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Stores time activies used within time entries
Response
200
application/json
Successful Operation
The response is of type object
.
Copy
curl --request POST \
--url https://api.sonderplan.com/v2/time-activity \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "Sound Post",
"description": "Recording, mixing and exporting from Pro Tools and other DAWs"
}'
Copy
{
"success": {
"id": 2384
}
}
Assistant
Responses are generated using AI and may contain mistakes.