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
Layout Matter Items
Get a layout
Retrieves a layout item on a specified matter.
GET
/
matters
/
{matterId}
/
layouts
/
{itemId}
curl --request GET \
--url https://api.smokeball.com/matters/{matterId}/layouts/{itemId} \
--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"
},
"name": "Item",
"description": "Text describing item",
"itemId": "59791902-6280-471b-bd18-f8439ba3042f",
"parentId": "Client",
"index": 0,
"layoutDesign": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "<string>"
},
"values": [
{
"key": "<string>",
"value": "<string>",
"state": "<any>"
}
],
"events": [
{
"id": "<string>",
"appointmentId": "<string>"
}
]
}
Response
200
application/json
When request is successful. Returns a 'LayoutMatterItem' object.
The response is of type object
.
curl --request GET \
--url https://api.smokeball.com/matters/{matterId}/layouts/{itemId} \
--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"
},
"name": "Item",
"description": "Text describing item",
"itemId": "59791902-6280-471b-bd18-f8439ba3042f",
"parentId": "Client",
"index": 0,
"layoutDesign": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "<string>"
},
"values": [
{
"key": "<string>",
"value": "<string>",
"state": "<any>"
}
],
"events": [
{
"id": "<string>",
"appointmentId": "<string>"
}
]
}