Introduction
Urable is an all-in-one business management application designed for service-based businesses. With a cloud-based infrastructure and dedicated mobile apps, it allows you to run your entire business from multiple devices in real-time.
Want to connect Urable to your favorite apps? Use out-of-box integrations or build your own using Urable's secure API. The API will open up endless customization opportunities and allow you to build your ideal ecosystem. Feel free to get in touch with us and we can help you get started.
Base URL
Production:
https://app.urable.com/api
Customers
Customers are the individuals or businesses for whom your Jobs/Orders are created.
Items
An item is a customer possession on which a service is being performed. The terminology and fields of an item can change based on your selected industry. See below for industry and item terminology:
Industry | Item |
Vehicle Care | Vehicle |
Lawn Care | Property Section |
Other | Item |
What made this section unhelpful for you?
Create an item
Creates a new item and attaches it to a customer in your account.
Header Parameters
Body Parameters
The ID of the customer in Urable that owns this item.
This field is only utilized for vehicles. It is the type of vehicle.
automotive
marine
aviation
other
The name of the item.
A URL pointing to a picture of the item.
This field is only utilized for vehicles. If only one VIN is listed then it will be considered a single vehicle. If more than one VIN is listed it will be considered a fleet of vehicles.
Show child attributes
This field is only utilized for vehicles. If only one license plate is listed then it will be considered a single vehicle. If more than one license plate is listed it will be considered a fleet of vehicles.
Show child attributes
This field is only utilized for property sections and provides measurements for the property.
Show child attributes
This field is only utilized for property sections since a property is tied to an address.
Show child attributes
An array of objects, each containing a custom key value pair.
Any additional notes on the item.
Response
Response Attributes
Show child attributes
What made this section unhelpful for you?
Response
{
"success": true,
"data": {
"id": "giChXvD1rENCq7SuX7dA"
}
}
What made this section unhelpful for you?
Update an item
Updates an existing item in your account.
Note: You can remove any property you don't want update in the request.
Header Parameters
Path Parameters
The ID of the item in Urable.
Body Parameters
The ID of the customer in Urable that owns this item.
This field is only utilized for vehicles. It is the type of vehicle.
automotive
marine
aviation
other
The name of the item
A URL pointing to a picture of the item
This field is only utilized for vehicles. If only one VIN is listed then it will be considered a single vehicle. If more than one VIN is listed it will be considered a fleet of vehicles.
Show child attributes
This field is only utilized for vehicles. If only one license plate is listed then it will be considered a single vehicle. If more than one license plate is listed it will be considered a fleet of vehicles.
Show child attributes
This field is only utilized for property sections and provides measurements for the property.
Show child attributes
This field is only utilized for property sections since a property is tied to an address.
Show child attributes
An array of objects, each containing a custom key value pair.
Any additional notes on the item
Response
Response Attributes
Show child attributes
What made this section unhelpful for you?
Response
{
"success": true,
"data": {
"id": "giChXvD1rENCq7SuX7dA"
}
}
What made this section unhelpful for you?
Retrieve an item
Retrieves an existing item from your account.
Header Parameters
Path Parameters
The ID of the item in Urable.
Response
Response Attributes
Show child attributes
What made this section unhelpful for you?
Response
{
"success": true,
"data": {
"id": "giChXvD1rENCq7SuX7dA",
"type": "automotive",
"name": "2014 McLaren P1",
"customerName": "John Smith",
"customerRef": "accounts/3xWVrkuKYrzlwZ72Vn4F/customers/CAxSoHm7IQo6z9WDMdUo",
"photoURL": "https://firebasestorage.googleapis.com/v0/b/urabledev.appspot.com/o/accounts%2F3xWVrkuKYrzlwZ72Vn4F%2Fitems%2FgiChXvD1rENCq7SuX7dA?alt=media&token=52923ada-c4fb-4743-bebf-e1c512f955a5",
"metadata": {
"vins": [
"ABCDEFGHIJKLMNOPQ"
],
"licensePlates": [
"ABC123"
]
},
"notes": "This car is very important to the customer so be extra careful.",
"created": {
"uid": "Oh4tLpllmFWt2Ek5aJQaV7fDbj23",
"timestamp": 1657230265020
},
"modified": {
"uid": "Oh4tLpllmFWt2Ek5aJQaV7fDbj23",
"timestamp": 1703278114700
}
}
}
What made this section unhelpful for you?
List items
Returns a list of your customers items. The items are returned sorted by creation date, with the most recent items appearing first.
Header Parameters
Query Parameters
A filter on the list based on the vehicles VIN.
A cursor for use in pagination. startAfter is an item ID that defines your place in the list. For instance, if you make a list request and receive 100 items, ending with giChXvD1rENCq7SuX7dA, your subsequent call can include startAfter= giChXvD1rENCq7SuX7dA in order to fetch the next page of the list.
A cursor for use in pagination. endBefore is an item ID that defines your place in the list. For instance, if you make a list request and receive 100 items, starting with giChXvD1rENCq7SuX7dA, your subsequent call can include endBefore=giChXvD1rENCq7SuX7dA in order to fetch the next page of the list.
A limit on the number of items to be returned. Limit can range between 1 and 100.
Response
Response Attributes
Show child attributes
What made this section unhelpful for you?
Response
{
"success": true,
"data": [
{
"id": "giChXvD1rENCq7SuX7dA",
"type": "automotive",
"name": "2014 McLaren P1",
"customerName": "John Smith",
"customerRef": "accounts/3xWVrkuKYrzlwZ72Vn4F/customers/CAxSoHm7IQo6z9WDMdUo",
"photoURL": "https://firebasestorage.googleapis.com/v0/b/urabledev.appspot.com/o/accounts%2F3xWVrkuKYrzlwZ72Vn4F%2Fitems%2FgiChXvD1rENCq7SuX7dA?alt=media&token=52923ada-c4fb-4743-bebf-e1c512f955a5",
"metadata": {
"vins": [
"ABCDEFGHIJKLMNOPQ"
],
"licensePlates": [
"ABC123"
]
},
"notes": "This car is very important to the customer so be extra careful.",
"created": {
"uid": "Oh4tLpllmFWt2Ek5aJQaV7fDbj23",
"timestamp": 1657230265020
},
"modified": {
"uid": "Oh4tLpllmFWt2Ek5aJQaV7fDbj23",
"timestamp": 1703278114700
}
}
]
}
What made this section unhelpful for you?
Delete an item
Deletes an existing item from your account.
Header Parameters
Path Parameters
The ID of the item in Urable.
Response
Response Attributes
Show child attributes
What made this section unhelpful for you?
Response
{
"success": true,
"data": {
"id": "giChXvD1rENCq7SuX7dA"
}
}