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
Tasks
Get task documents
Returns a list of document links for the specified task, if associated with the authenticated client.
GET
/
tasks
/
{taskId}
/
documents
curl --request GET \
--url https://api.smokeball.com/tasks/{taskId}/documents \
--header 'Authorization: <api-key>' \
--header 'x-api-key: <api-key>'
{
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET",
"self": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"value": [
{
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET",
"self": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "<string>"
},
"task": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "<string>"
},
"type": 0,
"isDeleted": false,
"document": "<any>"
}
]
}
Path Parameters
Response
200
application/json
When request is successful. Returns a list of 'Link' objects.
The response is of type object
.
curl --request GET \
--url https://api.smokeball.com/tasks/{taskId}/documents \
--header 'Authorization: <api-key>' \
--header 'x-api-key: <api-key>'
{
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET",
"self": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"value": [
{
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET",
"self": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "<string>"
},
"task": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "<string>"
},
"type": 0,
"isDeleted": false,
"document": "<any>"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.