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 Designs
Get a layout design
Retrieves a specified layout design.
GET
/
layouts
/
{id}
curl --request GET \
--url https://api.smokeball.com/layouts/{id} \
--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"
},
"versionId": "763c3857-2ed9-4c5d-bee0-c48d48a7543e",
"name": "Case Details",
"lastUpdated": 637847425252027400,
"description": "Property and title details",
"fields": [
{
"name": "PinAndLotSizes[]/AccountNumber",
"type": "Combobox",
"possibleValues": [
"Residence",
"Commercial",
"Factory",
"Office"
]
}
]
}
Path Parameters
Layout design Id
Response
200
application/json
When request is successful. Returns a 'LayoutDesign' object.
The response is of type object
.
curl --request GET \
--url https://api.smokeball.com/layouts/{id} \
--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"
},
"versionId": "763c3857-2ed9-4c5d-bee0-c48d48a7543e",
"name": "Case Details",
"lastUpdated": 637847425252027400,
"description": "Property and title details",
"fields": [
{
"name": "PinAndLotSizes[]/AccountNumber",
"type": "Combobox",
"possibleValues": [
"Residence",
"Commercial",
"Factory",
"Office"
]
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.