Organise and send work
Intervention types, forms, customers, technicians, cases, appointments, missions, checklists, documents, quotes, recurring work and knowledge base.
API · Seguimiento de casos
Crea y sigue intervenciones, asigna técnicos y gestiona mensajes, documentos, presupuestos, aprobaciones, listas, recurrencias y tiempos desde tu propio sistema.
https://api.sellviaapp.com/X-API-Key + BearerInicio rápido
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.
Puntos finales
Create, search, retrieve and update a case: status, priority, progress, appointments, assignment and technician mission.
/case/list
Llav + portador
List the signed-in customer cases; a supplier token can list every case.
page
entero
Optional
Número de página, empezando a 1.
per_page
entero
Optional
Number of results per page.
customer_id
entero
Optional
Required only with an integration token when the operation targets a specific customer.
status
cuerda
Optional
Filter by status code.
type_id
entero
Optional
Filter by intervention type.
priority
enum
Optional
low | normal | high | urgent
q
cuerda
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
Llav + portador
Retrieve a case with timeline, messages, documents and detailed quotes. The private mission is returned only to the assigned technician and supplier.
id
entero
Necesidad
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
Llav + portador
Create a service request linked to the customer.
customer_id
entero
Optional
Required only with a supplier token.
type_id
entero
Optional
Active intervention type.
title
cuerda
Necesidad
Short request title.
description
cuerda
Necesidad
Problem or request description.
status
cuerda
Optional
Supplier only; defaults to new.
priority
enum
Optional
low | normal | high | urgent
progress
entero
Optional
0 - 100
address
cuerda
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
cuerda
Optional
Assigned person or team.
technician_id
entero
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
Llav + portador
Update customer, type, status, priority, progress, appointment and assignment.
id
entero
Necesidad
Case identifier.
customer_id
entero
Optional
Linked customer; 0 removes the link.
type_id
entero
Optional
Type; 0 removes the type.
title
cuerda
Optional
Case title.
description
cuerda
Optional
Detailed description.
status
cuerda
Optional
Code returned by case/status/list.
priority
enum
Optional
low | normal | high | urgent
progress
entero
Optional
0 - 100
address
cuerda
Optional
Service address.
appointment_start
datetime
Optional
Empty to clear the date.
appointment_end
datetime
Optional
Empty to clear the date.
assigned_to
cuerda
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
Llav + portador
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"
}
}
}Puntos finales
Let the ERP manage intervention types and custom fields requested in the mobile app.
/case/type/list
Llav + portador
List available intervention types.
include_inactive
boolean
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
Llav + portador
Create an intervention type.
name
cuerda
Necesidad
Type name.
description
cuerda
Optional
Maximum 2,000 characters.
sort_order
entero
Optional
Display order.
active
boolean
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
Llav + portador
Edit, reorder or hide an intervention type.
id
entero
Necesidad
Type identifier.
name
cuerda
Necesidad
Type name.
description
cuerda
Optional
Description.
sort_order
entero
Optional
Display order.
active
boolean
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
Llav + portador
Delete an unused type or archive a linked type.
id
entero
Necesidad
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
Llav + portador
List custom service-request fields.
type_id
entero
Optional
Limit to global fields and the selected type.
include_inactive
boolean
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
Llav + portador
Add information to request from customers.
type_id
entero
Optional
0 or omitted for every type.
label_fr
cuerda
Necesidad
French label.
label_en
cuerda
Optional
English label.
field_type
enum
Necesidad
text | textarea | select | boolean | date | number
options
array
Optional
Required for select.
required
boolean
Optional
Required answer.
sort_order
entero
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
Llav + portador
Update a custom request field.
id
entero
Necesidad
Field identifier.
type_id
entero
Optional
Linked type or 0.
label_fr
cuerda
Necesidad
French label.
label_en
cuerda
Optional
English label.
field_type
enum
Necesidad
text | textarea | select | boolean | date | number
options
array
Optional
Menu options.
required
boolean
Optional
Required answer.
active
boolean
Optional
Visible field.
sort_order
entero
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
Llav + portador
Delete or archive a custom request field.
id
entero
Necesidad
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"
}
}
}Puntos finales
Synchronise field teams, skills and roles, then assign every intervention to the right technician.
/case/technician/list
Llav + portador
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
Llav + portador
Retrieve a technician’s complete professional record.
technician_id
entero
Necesidad
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
Llav + portador
Create or update a technician account’s professional profile.
technician_id
entero
Necesidad
Mobile account to configure as technician.
employee_code
cuerda
Optional
Employee or internal code.
job_title
cuerda
Optional
Technician job title.
specialties
cuerda
Optional
Field specialities.
skills
cuerda
Optional
Skills and certifications.
service_area
cuerda
Optional
Service area.
availability_notes
cuerda
Optional
Usual availability.
emergency_available
boolean
Optional
Available for emergencies.
internal_notes
cuerda
Optional
Internal notes hidden in the app.
profile_color
cuerda
Optional
#RRGGBB
active
boolean
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
Llav + portador
Assign the Customer or Technician role to a mobile account.
customer_id
entero
Necesidad
Mobile account.
role
enum
Necesidad
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
Llav + portador
Allow the assigned technician to update status and progress.
case_id
entero
Necesidad
Service assigned to the signed-in technician.
status
enum
Necesidad
planned | in_progress | waiting_customer | completed
progress
entero
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"
}
}
}Puntos finales
Prepare procedures, retrieve applied steps and record field completion.
/case/checklist/list
Llav + portador
Retrieve the checklist and progress for an authorised case.
case_id
entero
Necesidad
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
Llav + portador
Set the private mission visible only to the assigned technician.
case_id
entero
Necesidad
Case whose mission is being set.
mission_note
cuerda
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
Llav + portador
Complete or reopen a step; assigned technician or supplier only.
case_id
entero
Necesidad
Case assigned to the technician.
item_id
entero
Necesidad
Checklist step.
completed
boolean
Necesidad
Complete or reopen the step.
note
cuerda
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
Llav + portador
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
Llav + portador
Create a global checklist or one linked to an intervention type.
type_id
entero
Optional
Omit or use 0 for every type.
title_fr
cuerda
Necesidad
French title.
title_en
cuerda
Optional
English title.
items
array
Necesidad
Steps as strings or objects with label_fr, label_en, required and sort_order.
active
boolean
Optional
Active by default.
sort_order
entero
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
Llav + portador
Update a template and safely replace its steps.
id
entero
Necesidad
Template identifier.
type_id
entero
Optional
Linked type or 0.
title_fr
cuerda
Necesidad
French title.
title_en
cuerda
Optional
English title.
items
array
Necesidad
Complete list replacing template steps.
active
boolean
Optional
Availability.
sort_order
entero
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
Llav + portador
Delete an unused template or archive an applied template.
id
entero
Necesidad
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"
}
}
}Puntos finales
Start, stop, add and audit technician time for every case.
/case/time/list
Llav + portador
List time entries and total tracked time for an authorised case.
case_id
entero
Necesidad
Case assigned to the technician; supplier access is read-only.
technician_id
entero
Optional
Supplier access only; assigned technician by default.
include_deleted
boolean
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
Llav + portador
Start a live timer for the assigned technician.
case_id
entero
Necesidad
Case assigned to the signed-in technician.
note
cuerda
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
Llav + portador
Stop and calculate the active time entry.
case_id
entero
Necesidad
Case containing the active time entry.
entry_id
entero
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
Llav + portador
Manually add a date, start time and end time.
case_id
entero
Necesidad
Case assigned to the signed-in technician.
started_at
datetime
Necesidad
ISO 8601 date and time with timezone.
ended_at
datetime
Necesidad
After started_at; duration from 1 minute to 48 hours, without overlap.
note
cuerda
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
Llav + portador
Soft-delete a time entry with a mandatory reason retained in the audit trail.
entry_id
entero
Necesidad
Completed entry belonging to the technician.
reason
cuerda
Necesidad
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"
}
}
}Puntos finales
Exchange data with the app, classify documents, send photos and retrieve authorised files.
/case/message/send
Llav + portador
Add a message to the case; the sender is identified automatically from the authenticated account.
case_id
entero
Necesidad
Case identifier.
message
cuerda
Necesidad
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
Llav + portador
List document types visible in the mobile app.
include_inactive
boolean
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
Llav + portador
Create a document type for the shop.
label_fr
cuerda
Necesidad
French type name.
label_en
cuerda
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
entero
Optional
Display order.
active
boolean
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
Llav + portador
Edit, reorder or hide a document type.
id
entero
Necesidad
Type identifier.
label_fr
cuerda
Necesidad
French type name.
label_en
cuerda
Optional
English name.
icon
enum
Optional
description | photo_camera | assignment | request_quote | receipt_long | verified | folder | build
color
hex
Optional
#RRGGBB
sort_order
entero
Optional
Display order.
active
boolean
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
Llav + portador
Delete an unused type or archive a type already in use.
id
entero
Necesidad
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
Llav + portador
List all authorised documents newest first with their customer, technician or administrator source.
page
entero
Optional
Número de página, empezando a 1.
per_page
entero
Optional
Number of results per page.
customer_id
entero
Optional
Supplier-only filter.
case_id
entero
Optional
Limit to one case.
unlinked_only
boolean
Optional
Return only documents not linked to a case.
document_type_id
entero
Optional
Limit to one document type.
folder_path
cuerda
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
Llav + portador
Add one or more photos, PDFs, documents or signatures, optionally linked to a checklist step.
case_id
entero
Optional
Optional case. Required when checklist_item_id is provided.
customer_id
entero
Optional
Required with a supplier token when case_id is absent; ignored for an authenticated customer.
document_type_id
entero
Optional
Classification type; an active default is used when omitted.
checklist_item_id
entero
Optional
Checklist step that must belong to the specified case. Repeat the call to link multiple files.
title
cuerda
Optional
Readable title; falls back to the file name.
folder_path
cuerda
Optional
Free folder structure separated by /, maximum 8 levels.
note
cuerda
Optional
Optional note, maximum 5,000 characters.
customer_visible
boolean
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
cuerda
Necesidad
File name.
mime_type
enum
Necesidad
image/jpeg | image/png | image/webp | application/pdf
content_base64
base64
Necesidad
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
Llav + portador
Download the Base64 content of an authorised document.
id
entero
Necesidad
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
Llav + portador
Load an optimised image thumbnail before opening and zooming.
id
entero
Necesidad
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
Llav + portador
Delete a document that is not attached to a quote.
id
entero
Necesidad
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"
}
}
}Puntos finales
Create detailed quotes, retrieve customer decisions and manage final intervention approval.
/case/quote/create
Llav + portador
Create and send a detailed quote with lines, discounts, VAT and an optional attachment.
case_id
entero
Necesidad
Case identifier.
lines
array
Necesidad
1 to 100 objects: description, quantity, unit_price, discount_percent and tax_rate.
notes
cuerda
Optional
Maximum 5,000 characters.
valid_until
Fecha
Optional
YYYY-MM-DD
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
Llav + portador
Accept or reject a quote sent to the customer.
case_id
entero
Necesidad
Case identifier.
quote_id
entero
Necesidad
Quote identifier.
decision
enum
Necesidad
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
Llav + portador
Request customer approval and signature.
case_id
entero
Necesidad
Case identifier.
validation_type
cuerda
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
Llav + portador
Record the customer signature, either directly by the customer or on the assigned technician’s phone.
case_id
entero
Necesidad
Case identifier accessible to the customer or assigned technician.
validation_type
cuerda
Optional
Defaults to completion.
signature_name
cuerda
Necesidad
Name of the customer signing.
signature_base64
base64
Necesidad
PNG signature image encoded as Base64.
comment
cuerda
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"
}
}
}Puntos finales
Automate recurring interventions and produce structured final-report data.
/case/recurrence/list
Llav + portador
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
Llav + portador
Create a recurrence from a source case.
source_case_id
entero
Necesidad
Case used as the template.
frequency
enum
Necesidad
daily | weekly | monthly | yearly
interval_value
entero
Optional
1 - 52
next_run_at
datetime
Necesidad
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
Llav + portador
Update a recurring service.
id
entero
Necesidad
Recurrence identifier.
source_case_id
entero
Necesidad
Source case.
frequency
enum
Necesidad
daily | weekly | monthly | yearly
interval_value
entero
Optional
1 - 52
next_run_at
datetime
Necesidad
YYYY-MM-DD HH:MM:SS
end_at
datetime
Optional
Optional end date.
active
boolean
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
Llav + portador
Stop a recurring service.
id
entero
Necesidad
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
Llav + portador
Generate recurring services that are due.
limit
entero
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
Llav + portador
Prepare the final report with fields and before/after photos.
case_id
entero
Necesidad
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"
}
}
}Puntos finales
Retrieve customer or technician alerts and synchronise their read status.
/case/notification/list
Llav + portador
List automatic notifications for the signed-in customer or technician.
limit
entero
Optional
1 - 100
recipient_type
enum
Optional
Supplier token only: customer or technician.
recipient_id
entero
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
Llav + portador
Mark one or every notification as read.
id
entero
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"
}
}
}Puntos finales
Supply procedures, FAQs and technical documents available to technicians in the mobile app.
/case/knowledge/categories
Llav + portador
List knowledge-base categories. On mobile, access is restricted to active technicians.
include_inactive
boolean
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
Llav + portador
Quickly search FAQs, information, procedures and documents by keyword. Mobile access is technician-only.
q
cuerda
Optional
Keyword or phrase, maximum 120 characters.
category_id
entero
Optional
Filter by category.
type
enum
Optional
faq | information | procedure | document
page
entero
Optional
Page, defaults to 1.
limit
entero
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
Llav + portador
Open an entry and list its attachments without loading large files.
id
entero
Necesidad
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
Llav + portador
Download an authorised Base64 attachment.
id
entero
Necesidad
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
Llav + portador
Create a knowledge category.
title_fr
cuerda
Necesidad
French title.
title_en
cuerda
Optional
English title with French fallback.
description_fr
cuerda
Optional
French description.
description_en
cuerda
Optional
English description.
color
hex
Optional
#RRGGBB
active
boolean
Optional
Visible by default.
sort_order
entero
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
Llav + portador
Edit, reorder or hide a category.
id
entero
Necesidad
Category identifier.
title_fr
cuerda
Necesidad
French title.
title_en
cuerda
Optional
English title.
active
boolean
Optional
Visibility.
sort_order
entero
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
Llav + portador
Delete a category while retaining its entries as uncategorised.
id
entero
Necesidad
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
Llav + portador
Create a FAQ, information entry, procedure or documentation.
category_id
entero
Optional
Optional category.
content_type
enum
Necesidad
faq | information | procedure | document
title_fr
cuerda
Necesidad
French title.
title_en
cuerda
Optional
English title.
summary_fr
cuerda
Optional
French summary.
summary_en
cuerda
Optional
English summary.
content_fr
cuerda
Optional
French content.
content_en
cuerda
Optional
English content.
keywords
cuerda
Optional
Comma-separated keywords.
featured
boolean
Optional
Featured.
active
boolean
Optional
Published.
sort_order
entero
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
Llav + portador
Edit and publish an entry.
id
entero
Necesidad
Entry identifier.
content_type
enum
Necesidad
faq | information | procedure | document
title_fr
cuerda
Necesidad
French title.
title_en
cuerda
Optional
English title.
content_fr
cuerda
Optional
French content.
content_en
cuerda
Optional
English content.
active
boolean
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
Llav + portador
Delete an entry and its attachments.
id
entero
Necesidad
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
Llav + portador
Attach a document up to 8 MB.
article_id
entero
Necesidad
Parent entry.
title_fr
cuerda
Optional
French title.
title_en
cuerda
Optional
English title.
file_name
cuerda
Necesidad
File name.
mime_type
cuerda
Necesidad
Allowed MIME type.
content_base64
base64
Necesidad
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
Llav + portador
Delete an attachment.
id
entero
Necesidad
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.