Organise and send work
Intervention types, forms, customers, technicians, cases, appointments, missions, checklists, documents, quotes, recurring work and knowledge base.
API · Vorgangsverfolgung
Erstellen und verfolgen Sie Einsätze, weisen Sie Techniker zu und verwalten Sie Nachrichten, Dokumente, Angebote, Freigaben, Checklisten, Wiederholungen und Zeiten in Ihrem System.
https://api.sellviaapp.com/X-API-Key + BearerSchnellstart
Get the X-API-Key and generate the Bearer in Dashboard → API. Enter them below, then use “Test · Generate” on an endpoint to obtain the response and cURL, PHP 8 or JavaScript code.
Credentials remain in memory for this page only. For a customer-related operation, add customer_id.
ERP ↔ SellViaApp
The API is not limited to retrieving cases. Your software can configure the module, supply the data used by the app, assign technicians and retrieve actions completed in the field or by customers.
Intervention types, forms, customers, technicians, cases, appointments, missions, checklists, documents, quotes, recurring work and knowledge base.
Customer requests, statuses, progress, messages, photos, documents, completed steps, time entries, quote decisions, approvals and signatures.
Your ERP stores the identifiers returned by SellViaApp, retrieves cases and related data, then applies only relevant changes to your system.
Endpunkte
Create, search, retrieve and update a case: status, priority, progress, appointments, assignment and technician mission.
/case/list
Schlüssel + Träger
List the signed-in customer cases; a supplier token can list every case.
page
Ganzzahl
Optional
Seitenzahl, beginnend bei 1.
per_page
Ganzzahl
Optional
Number of results per page.
customer_id
Ganzzahl
Optional
Required only with an integration token when the operation targets a specific customer.
status
String
Optional
Filter by status code.
type_id
Ganzzahl
Optional
Filter by intervention type.
priority
enum
Optional
low | normal | high | urgent
q
String
Optional
Supplier search by reference, title, description or assignee.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/detail
Schlüssel + Träger
Retrieve a case with timeline, messages, documents and detailed quotes. The private mission is returned only to the assigned technician and supplier.
id
Ganzzahl
Erforderlich
Case identifier.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/create
Schlüssel + Träger
Create a service request linked to the customer.
customer_id
Ganzzahl
Optional
Required only with a supplier token.
type_id
Ganzzahl
Optional
Active intervention type.
title
String
Erforderlich
Short request title.
description
String
Erforderlich
Problem or request description.
status
String
Optional
Supplier only; defaults to new.
priority
enum
Optional
low | normal | high | urgent
progress
Ganzzahl
Optional
0 - 100
address
String
Optional
Service address.
appointment_start
datetime
Optional
YYYY-MM-DD HH:MM:SS
appointment_end
datetime
Optional
YYYY-MM-DD HH:MM:SS
assigned_to
String
Optional
Assigned person or team.
technician_id
Ganzzahl
Optional
Assigned technician; supplier only.
custom_fields
object
Optional
Values indexed by custom field ID or key.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/update
Schlüssel + Träger
Update customer, type, status, priority, progress, appointment and assignment.
id
Ganzzahl
Erforderlich
Case identifier.
customer_id
Ganzzahl
Optional
Linked customer; 0 removes the link.
type_id
Ganzzahl
Optional
Type; 0 removes the type.
title
String
Optional
Case title.
description
String
Optional
Detailed description.
status
String
Optional
Code returned by case/status/list.
priority
enum
Optional
low | normal | high | urgent
progress
Ganzzahl
Optional
0 - 100
address
String
Optional
Service address.
appointment_start
datetime
Optional
Empty to clear the date.
appointment_end
datetime
Optional
Empty to clear the date.
assigned_to
String
Optional
Assigned person or team.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/status/list
Schlüssel + Träger
List workflow statuses and their translated labels.
No business parameter is expected. Send only the indicated authentication headers.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}Endpunkte
Let the ERP manage intervention types and custom fields requested in the mobile app.
/case/type/list
Schlüssel + Träger
List available intervention types.
include_inactive
Boolestan
Optional
Supplier only; includes hidden types.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/type/add
Schlüssel + Träger
Create an intervention type.
name
String
Erforderlich
Type name.
description
String
Optional
Maximum 2,000 characters.
sort_order
Ganzzahl
Optional
Display order.
active
Boolestan
Optional
Active by default.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/type/update
Schlüssel + Träger
Edit, reorder or hide an intervention type.
id
Ganzzahl
Erforderlich
Type identifier.
name
String
Erforderlich
Type name.
description
String
Optional
Description.
sort_order
Ganzzahl
Optional
Display order.
active
Boolestan
Optional
Type availability.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/type/delete
Schlüssel + Träger
Delete an unused type or archive a linked type.
id
Ganzzahl
Erforderlich
A type in use will be archived.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/form/list
Schlüssel + Träger
List custom service-request fields.
type_id
Ganzzahl
Optional
Limit to global fields and the selected type.
include_inactive
Boolestan
Optional
Supplier only.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/form/add
Schlüssel + Träger
Add information to request from customers.
type_id
Ganzzahl
Optional
0 or omitted for every type.
label_fr
String
Erforderlich
French label.
label_en
String
Optional
English label.
field_type
enum
Erforderlich
text | textarea | select | boolean | date | number
options
array
Optional
Required for select.
required
Boolestan
Optional
Required answer.
sort_order
Ganzzahl
Optional
Display order.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/form/update
Schlüssel + Träger
Update a custom request field.
id
Ganzzahl
Erforderlich
Field identifier.
type_id
Ganzzahl
Optional
Linked type or 0.
label_fr
String
Erforderlich
French label.
label_en
String
Optional
English label.
field_type
enum
Erforderlich
text | textarea | select | boolean | date | number
options
array
Optional
Menu options.
required
Boolestan
Optional
Required answer.
active
Boolestan
Optional
Visible field.
sort_order
Ganzzahl
Optional
Order.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/form/delete
Schlüssel + Träger
Delete or archive a custom request field.
id
Ganzzahl
Erforderlich
Field identifier.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}Endpunkte
Synchronise field teams, skills and roles, then assign every intervention to the right technician.
/case/technician/list
Schlüssel + Träger
List technicians separately with job, skills, availability and workload.
No business parameter is expected. Send only the indicated authentication headers.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/technician/detail
Schlüssel + Träger
Retrieve a technician’s complete professional record.
technician_id
Ganzzahl
Erforderlich
Technician identifier.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/technician/profile
Schlüssel + Träger
Create or update a technician account’s professional profile.
technician_id
Ganzzahl
Erforderlich
Mobile account to configure as technician.
employee_code
String
Optional
Employee or internal code.
job_title
String
Optional
Technician job title.
specialties
String
Optional
Field specialities.
skills
String
Optional
Skills and certifications.
service_area
String
Optional
Service area.
availability_notes
String
Optional
Usual availability.
emergency_available
Boolestan
Optional
Available for emergencies.
internal_notes
String
Optional
Internal notes hidden in the app.
profile_color
String
Optional
#RRGGBB
active
Boolestan
Optional
Active technician.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/technician/role
Schlüssel + Träger
Assign the Customer or Technician role to a mobile account.
customer_id
Ganzzahl
Erforderlich
Mobile account.
role
enum
Erforderlich
client | technician
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/technician/update
Schlüssel + Träger
Allow the assigned technician to update status and progress.
case_id
Ganzzahl
Erforderlich
Service assigned to the signed-in technician.
status
enum
Erforderlich
planned | in_progress | waiting_customer | completed
progress
Ganzzahl
Optional
0 - 100
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}Endpunkte
Prepare procedures, retrieve applied steps and record field completion.
/case/checklist/list
Schlüssel + Träger
Retrieve the checklist and progress for an authorised case.
case_id
Ganzzahl
Erforderlich
Case authorised for the signed-in account.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/mission/update
Schlüssel + Träger
Set the private mission visible only to the assigned technician.
case_id
Ganzzahl
Erforderlich
Case whose mission is being set.
mission_note
String
Optional
Private technician instruction, maximum 10,000 characters. An empty value clears the mission.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/checklist/item/update
Schlüssel + Träger
Complete or reopen a step; assigned technician or supplier only.
case_id
Ganzzahl
Erforderlich
Case assigned to the technician.
item_id
Ganzzahl
Erforderlich
Checklist step.
completed
Boolestan
Erforderlich
Complete or reopen the step.
note
String
Optional
Optional field note.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/checklist/template/list
Schlüssel + Träger
List checklist templates and their steps.
No business parameter is expected. Send only the indicated authentication headers.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/checklist/template/add
Schlüssel + Träger
Create a global checklist or one linked to an intervention type.
type_id
Ganzzahl
Optional
Omit or use 0 for every type.
title_fr
String
Erforderlich
French title.
title_en
String
Optional
English title.
items
array
Erforderlich
Steps as strings or objects with label_fr, label_en, required and sort_order.
active
Boolestan
Optional
Active by default.
sort_order
Ganzzahl
Optional
Template order.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/checklist/template/update
Schlüssel + Träger
Update a template and safely replace its steps.
id
Ganzzahl
Erforderlich
Template identifier.
type_id
Ganzzahl
Optional
Linked type or 0.
title_fr
String
Erforderlich
French title.
title_en
String
Optional
English title.
items
array
Erforderlich
Complete list replacing template steps.
active
Boolestan
Optional
Availability.
sort_order
Ganzzahl
Optional
Order.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/checklist/template/delete
Schlüssel + Träger
Delete an unused template or archive an applied template.
id
Ganzzahl
Erforderlich
An applied template will be archived.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}Endpunkte
Start, stop, add and audit technician time for every case.
/case/time/list
Schlüssel + Träger
List time entries and total tracked time for an authorised case.
case_id
Ganzzahl
Erforderlich
Case assigned to the technician; supplier access is read-only.
technician_id
Ganzzahl
Optional
Supplier access only; assigned technician by default.
include_deleted
Boolestan
Optional
Supplier access only; include deleted entries and their reason.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/time/start
Schlüssel + Träger
Start a live timer for the assigned technician.
case_id
Ganzzahl
Erforderlich
Case assigned to the signed-in technician.
note
String
Optional
Optional note, maximum 1,000 characters.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/time/stop
Schlüssel + Träger
Stop and calculate the active time entry.
case_id
Ganzzahl
Erforderlich
Case containing the active time entry.
entry_id
Ganzzahl
Optional
Active entry; the current case entry is used when omitted.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/time/add
Schlüssel + Träger
Manually add a date, start time and end time.
case_id
Ganzzahl
Erforderlich
Case assigned to the signed-in technician.
started_at
datetime
Erforderlich
ISO 8601 date and time with timezone.
ended_at
datetime
Erforderlich
After started_at; duration from 1 minute to 48 hours, without overlap.
note
String
Optional
Optional note.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/time/delete
Schlüssel + Träger
Soft-delete a time entry with a mandatory reason retained in the audit trail.
entry_id
Ganzzahl
Erforderlich
Completed entry belonging to the technician.
reason
String
Erforderlich
Mandatory reason from 5 to 1,000 characters.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}Endpunkte
Exchange data with the app, classify documents, send photos and retrieve authorised files.
/case/message/send
Schlüssel + Träger
Add a message to the case; the sender is identified automatically from the authenticated account.
case_id
Ganzzahl
Erforderlich
Case identifier.
message
String
Erforderlich
Message to add.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/document-type/list
Schlüssel + Träger
List document types visible in the mobile app.
include_inactive
Boolestan
Optional
Supplier token only; includes archived types.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/document-type/add
Schlüssel + Träger
Create a document type for the shop.
label_fr
String
Erforderlich
French type name.
label_en
String
Optional
English name; falls back to French.
icon
enum
Optional
description | photo_camera | assignment | request_quote | receipt_long | verified | folder | build
color
hex
Optional
#RRGGBB
sort_order
Ganzzahl
Optional
Display order.
active
Boolestan
Optional
Active by default.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/document-type/update
Schlüssel + Träger
Edit, reorder or hide a document type.
id
Ganzzahl
Erforderlich
Type identifier.
label_fr
String
Erforderlich
French type name.
label_en
String
Optional
English name.
icon
enum
Optional
description | photo_camera | assignment | request_quote | receipt_long | verified | folder | build
color
hex
Optional
#RRGGBB
sort_order
Ganzzahl
Optional
Display order.
active
Boolestan
Optional
Type availability.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/document-type/delete
Schlüssel + Träger
Delete an unused type or archive a type already in use.
id
Ganzzahl
Erforderlich
Type identifier. A type in use will be archived.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/document/list
Schlüssel + Träger
List all authorised documents newest first with their customer, technician or administrator source.
page
Ganzzahl
Optional
Seitenzahl, beginnend bei 1.
per_page
Ganzzahl
Optional
Number of results per page.
customer_id
Ganzzahl
Optional
Supplier-only filter.
case_id
Ganzzahl
Optional
Limit to one case.
unlinked_only
Boolestan
Optional
Return only documents not linked to a case.
document_type_id
Ganzzahl
Optional
Limit to one document type.
folder_path
String
Optional
Limit to an exact path, for example Reports / 2026.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/document/add
Schlüssel + Träger
Add one or more photos, PDFs, documents or signatures, optionally linked to a checklist step.
case_id
Ganzzahl
Optional
Optional case. Required when checklist_item_id is provided.
customer_id
Ganzzahl
Optional
Required with a supplier token when case_id is absent; ignored for an authenticated customer.
document_type_id
Ganzzahl
Optional
Classification type; an active default is used when omitted.
checklist_item_id
Ganzzahl
Optional
Checklist step that must belong to the specified case. Repeat the call to link multiple files.
title
String
Optional
Readable title; falls back to the file name.
folder_path
String
Optional
Free folder structure separated by /, maximum 8 levels.
note
String
Optional
Optional note, maximum 5,000 characters.
customer_visible
Boolestan
Optional
A supplier token can keep the document internal with false; mobile uploads remain visible.
kind
enum
Optional
photo | document | signature
photo_stage
enum
Optional
general | before | after
file_name
String
Erforderlich
File name.
mime_type
enum
Erforderlich
image/jpeg | image/png | image/webp | application/pdf
content_base64
base64
Erforderlich
Encoded file, maximum 6 MB.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/document/get
Schlüssel + Träger
Download the Base64 content of an authorised document.
id
Ganzzahl
Erforderlich
Document identifier.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/document/preview
Schlüssel + Träger
Load an optimised image thumbnail before opening and zooming.
id
Ganzzahl
Erforderlich
Authorised image-document identifier.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/document/delete
Schlüssel + Träger
Delete a document that is not attached to a quote.
id
Ganzzahl
Erforderlich
Document identifier.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}Endpunkte
Create detailed quotes, retrieve customer decisions and manage final intervention approval.
/case/quote/create
Schlüssel + Träger
Create and send a detailed quote with lines, discounts, VAT and an optional attachment.
case_id
Ganzzahl
Erforderlich
Case identifier.
lines
array
Erforderlich
1 to 100 objects: description, quantity, unit_price, discount_percent and tax_rate.
notes
String
Optional
Maximum 5,000 characters.
valid_until
Datum
Optional
JJJJ-MM-TT
attachment
object
Optional
file_name, mime_type and content_base64; maximum 6 MB.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/quote/respond
Schlüssel + Träger
Accept or reject a quote sent to the customer.
case_id
Ganzzahl
Erforderlich
Case identifier.
quote_id
Ganzzahl
Erforderlich
Quote identifier.
decision
enum
Erforderlich
accepted | rejected
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/validation/request
Schlüssel + Träger
Request customer approval and signature.
case_id
Ganzzahl
Erforderlich
Case identifier.
validation_type
String
Optional
Defaults to completion.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/validation/send
Schlüssel + Träger
Record the customer signature, either directly by the customer or on the assigned technician’s phone.
case_id
Ganzzahl
Erforderlich
Case identifier accessible to the customer or assigned technician.
validation_type
String
Optional
Defaults to completion.
signature_name
String
Erforderlich
Name of the customer signing.
signature_base64
base64
Erforderlich
PNG signature image encoded as Base64.
comment
String
Optional
Optional customer comment.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}Endpunkte
Automate recurring interventions and produce structured final-report data.
/case/recurrence/list
Schlüssel + Träger
List recurring services.
No business parameter is expected. Send only the indicated authentication headers.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/recurrence/add
Schlüssel + Träger
Create a recurrence from a source case.
source_case_id
Ganzzahl
Erforderlich
Case used as the template.
frequency
enum
Erforderlich
daily | weekly | monthly | yearly
interval_value
Ganzzahl
Optional
1 - 52
next_run_at
datetime
Erforderlich
YYYY-MM-DD HH:MM:SS
end_at
datetime
Optional
Optional end date.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/recurrence/update
Schlüssel + Träger
Update a recurring service.
id
Ganzzahl
Erforderlich
Recurrence identifier.
source_case_id
Ganzzahl
Erforderlich
Source case.
frequency
enum
Erforderlich
daily | weekly | monthly | yearly
interval_value
Ganzzahl
Optional
1 - 52
next_run_at
datetime
Erforderlich
YYYY-MM-DD HH:MM:SS
end_at
datetime
Optional
Optional end date.
active
Boolestan
Optional
Active recurrence.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/recurrence/delete
Schlüssel + Träger
Stop a recurring service.
id
Ganzzahl
Erforderlich
Recurrence identifier.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/recurrence/process
Schlüssel + Träger
Generate recurring services that are due.
limit
Ganzzahl
Optional
Maximum 200 creations per call.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/report/summary
Schlüssel + Träger
Prepare the final report with fields and before/after photos.
case_id
Ganzzahl
Erforderlich
Report case.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}Endpunkte
Retrieve customer or technician alerts and synchronise their read status.
/case/notification/list
Schlüssel + Träger
List automatic notifications for the signed-in customer or technician.
limit
Ganzzahl
Optional
1 - 100
recipient_type
enum
Optional
Supplier token only: customer or technician.
recipient_id
Ganzzahl
Optional
Supplier token only.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/notification/read
Schlüssel + Träger
Mark one or every notification as read.
id
Ganzzahl
Optional
Omit to mark all notifications as read.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}Endpunkte
Supply procedures, FAQs and technical documents available to technicians in the mobile app.
/case/knowledge/categories
Schlüssel + Träger
List knowledge-base categories. On mobile, access is restricted to active technicians.
include_inactive
Boolestan
Optional
Supplier token only.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/knowledge/search
Schlüssel + Träger
Quickly search FAQs, information, procedures and documents by keyword. Mobile access is technician-only.
q
String
Optional
Keyword or phrase, maximum 120 characters.
category_id
Ganzzahl
Optional
Filter by category.
type
enum
Optional
faq | information | procedure | document
page
Ganzzahl
Optional
Page, defaults to 1.
limit
Ganzzahl
Optional
1 to 50 results.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/knowledge/detail
Schlüssel + Träger
Open an entry and list its attachments without loading large files.
id
Ganzzahl
Erforderlich
Entry identifier.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/knowledge/document
Schlüssel + Träger
Download an authorised Base64 attachment.
id
Ganzzahl
Erforderlich
Attachment identifier.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/knowledge/category/add
Schlüssel + Träger
Create a knowledge category.
title_fr
String
Erforderlich
French title.
title_en
String
Optional
English title with French fallback.
description_fr
String
Optional
French description.
description_en
String
Optional
English description.
color
hex
Optional
#RRGGBB
active
Boolestan
Optional
Visible by default.
sort_order
Ganzzahl
Optional
Order.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/knowledge/category/update
Schlüssel + Träger
Edit, reorder or hide a category.
id
Ganzzahl
Erforderlich
Category identifier.
title_fr
String
Erforderlich
French title.
title_en
String
Optional
English title.
active
Boolestan
Optional
Visibility.
sort_order
Ganzzahl
Optional
Order.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/knowledge/category/delete
Schlüssel + Träger
Delete a category while retaining its entries as uncategorised.
id
Ganzzahl
Erforderlich
Category identifier.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/knowledge/article/add
Schlüssel + Träger
Create a FAQ, information entry, procedure or documentation.
category_id
Ganzzahl
Optional
Optional category.
content_type
enum
Erforderlich
faq | information | procedure | document
title_fr
String
Erforderlich
French title.
title_en
String
Optional
English title.
summary_fr
String
Optional
French summary.
summary_en
String
Optional
English summary.
content_fr
String
Optional
French content.
content_en
String
Optional
English content.
keywords
String
Optional
Comma-separated keywords.
featured
Boolestan
Optional
Featured.
active
Boolestan
Optional
Published.
sort_order
Ganzzahl
Optional
Order.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/knowledge/article/update
Schlüssel + Träger
Edit and publish an entry.
id
Ganzzahl
Erforderlich
Entry identifier.
content_type
enum
Erforderlich
faq | information | procedure | document
title_fr
String
Erforderlich
French title.
title_en
String
Optional
English title.
content_fr
String
Optional
French content.
content_en
String
Optional
English content.
active
Boolestan
Optional
Published.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/knowledge/article/delete
Schlüssel + Träger
Delete an entry and its attachments.
id
Ganzzahl
Erforderlich
Entry identifier.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/knowledge/document/add
Schlüssel + Träger
Attach a document up to 8 MB.
article_id
Ganzzahl
Erforderlich
Parent entry.
title_fr
String
Optional
French title.
title_en
String
Optional
English title.
file_name
String
Erforderlich
File name.
mime_type
String
Erforderlich
Allowed MIME type.
content_base64
base64
Erforderlich
Maximum 8 MB.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/case/knowledge/document/delete
Schlüssel + Träger
Delete an attachment.
id
Ganzzahl
Erforderlich
Attachment identifier.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}Reference
Each row has a “Parameters and responses” button showing required or optional fields, possible statuses and JSON examples. An empty list means the resource is not populated yet, not that the endpoint is down.