Retrieves all fee list prices, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of fee list prices.
feelist_price| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary key |
globally unique identifier | |
| feelist_id |
Feelist on which this price belongs to |
globally unique identifier |
Optionally required : feelist_id, feelist_reference_back_office or feelist must be provided |
| hour_type_id |
Foreign key to hour_type. You need to supply at one one of the following value : hour_type,equipment_family,job_type |
globally unique identifier |
Optionally required : hour_type_id, hour_type_code or hour_type must be provided |
| equipment_family_id |
Foreign key to equipment_family. You need to supply at one one of the following value : hour_type,equipment_family,job_type |
globally unique identifier | |
| job_type_id |
Foreign key to job_type. You need to supply at one one of the following value : hour_type,equipment_family,job_type |
globally unique identifier | |
| user_type_id |
Foreign key of the user type this rate applies to, when rates differ by technician category. |
globally unique identifier | |
| price | decimal number |
Required |
|
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
{
"id": "b3fa2e7a-a7de-41de-9dee-c0328dcfe1d3",
"feelist_id": "056597cc-ef16-4ed9-b70f-6257cded6c43",
"hour_type_id": "3341c89a-ba87-4666-b79c-32ff87953baa",
"equipment_family_id": "5125ae98-826d-4cf9-a8be-c7a3ccee0e2d",
"job_type_id": "929884ab-9b32-4c46-a920-08b061ef99f8",
"user_type_id": "572ee187-4899-4894-85c3-e1b49e7c4624",
"price": 1.0,
"modified_dateutc": "2026-09-16T09:23:36.0534123+00:00"
}
application/xml, text/xml
<feelist_price xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <equipment_family_id>5125ae98-826d-4cf9-a8be-c7a3ccee0e2d</equipment_family_id> <feelist_id>056597cc-ef16-4ed9-b70f-6257cded6c43</feelist_id> <hour_type_id>3341c89a-ba87-4666-b79c-32ff87953baa</hour_type_id> <id>b3fa2e7a-a7de-41de-9dee-c0328dcfe1d3</id> <job_type_id>929884ab-9b32-4c46-a920-08b061ef99f8</job_type_id> <modified_dateutc>2026-09-16T09:23:36.053Z</modified_dateutc> <price>1</price> <user_type_id>572ee187-4899-4894-85c3-e1b49e7c4624</user_type_id> </feelist_price>