Documentation
- Getting Started
- Authentication
- Making Requests
- Resource Creation
- Searching
- Plugins
- Webhooks
Tutorials
APIs
- Activity Codes
- Archive
- Authorization
- Bank Accounts
- Contacts
- Events
- Expenses
- Fees
- Files
- Firm
- Firm Users
- Folders
- Invoices
- Layout Designs
- Layout Matter Items
- Matter Billing Configuration
- Matter Items
- Matter Types
- Matters
- Memos
- Notifications
- Plugins
- Referral Types
- Relationships
- Roles
- Staff
- Stages
- Subscription Payments
- Subscription Promotions
- Subscriptions
- Tasks
- Users
- Webhooks
Activity Codes
Get activity code
Retrieves a specified activity code.
GET
/
activitycodes
/
{id}
curl --request GET \
--url https://api.smokeball.com/activitycodes/{id} \
--header 'Authorization: <api-key>' \
--header 'x-api-key: <api-key>'
{
"href": "<string>",
"relation": "<string>",
"method": "GET",
"self": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"id": "23d2a4bc-8529-462e-8560-dfbf4fa24e49",
"versionId": "23d2a4bc-8529-462e-8560-dfbf4fa24e49",
"updatedByUserId": "750eb5c5-ac0b-7d11-4997-e0ce9d8896c8",
"type": 0,
"description": "Contract review",
"code": "CR",
"isBillable": true,
"rateType": 2,
"rate": 23.2,
"quantity": 0.6,
"taxInclusive": true,
"taxExempt": true,
"isDeleted": true
}
Path Parameters
Response
200
application/json
When request is successful. Returns a 'ActivityCode' object.
The response is of type object
.
curl --request GET \
--url https://api.smokeball.com/activitycodes/{id} \
--header 'Authorization: <api-key>' \
--header 'x-api-key: <api-key>'
{
"href": "<string>",
"relation": "<string>",
"method": "GET",
"self": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"id": "23d2a4bc-8529-462e-8560-dfbf4fa24e49",
"versionId": "23d2a4bc-8529-462e-8560-dfbf4fa24e49",
"updatedByUserId": "750eb5c5-ac0b-7d11-4997-e0ce9d8896c8",
"type": 0,
"description": "Contract review",
"code": "CR",
"isBillable": true,
"rateType": 2,
"rate": 23.2,
"quantity": 0.6,
"taxInclusive": true,
"taxExempt": true,
"isDeleted": true
}
Assistant
Responses are generated using AI and may contain mistakes.