Organise and send work
Intervention types, forms, customers, technicians, cases, appointments, missions, checklists, documents, quotes, recurring work and knowledge base.
API · Acompanhamento de processos
Crie e acompanhe intervenções, atribua técnicos e gira mensagens, documentos, orçamentos, aprovações, checklists, recorrências e tempos a partir do seu sistema.
https://api.sellviaapp.com/X-API-Key + BearerInício 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.
Pontos finais
Create, search, retrieve and update a case: status, priority, progress, appointments, assignment and technician mission.
/case/list
Chave + Carregador
List the signed-in customer cases; a supplier token can list every case.
page
inteiro
Optional
Número da página, começando em 1.
per_page
inteiro
Optional
Number of results per page.
customer_id
inteiro
Optional
Required only with an integration token when the operation targets a specific customer.
status
string
Optional
Filter by status code.
type_id
inteiro
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
Chave + Carregador
Retrieve a case with timeline, messages, documents and detailed quotes. The private mission is returned only to the assigned technician and supplier.
id
inteiro
Necessário
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
Chave + Carregador
Create a service request linked to the customer.
customer_id
inteiro
Optional
Required only with a supplier token.
type_id
inteiro
Optional
Active intervention type.
title
string
Necessário
Short request title.
description
string
Necessário
Problem or request description.
status
string
Optional
Supplier only; defaults to new.
priority
enum
Optional
low | normal | high | urgent
progress
inteiro
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
inteiro
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
Chave + Carregador
Update customer, type, status, priority, progress, appointment and assignment.
id
inteiro
Necessário
Case identifier.
customer_id
inteiro
Optional
Linked customer; 0 removes the link.
type_id
inteiro
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
inteiro
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
Chave + Carregador
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"
}
}
}Pontos finais
Let the ERP manage intervention types and custom fields requested in the mobile app.
/case/type/list
Chave + Carregador
List available intervention types.
include_inactive
booleano
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
Chave + Carregador
Create an intervention type.
name
string
Necessário
Type name.
description
string
Optional
Maximum 2,000 characters.
sort_order
inteiro
Optional
Display order.
active
booleano
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
Chave + Carregador
Edit, reorder or hide an intervention type.
id
inteiro
Necessário
Type identifier.
name
string
Necessário
Type name.
description
string
Optional
Description.
sort_order
inteiro
Optional
Display order.
active
booleano
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
Chave + Carregador
Delete an unused type or archive a linked type.
id
inteiro
Necessário
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
Chave + Carregador
List custom service-request fields.
type_id
inteiro
Optional
Limit to global fields and the selected type.
include_inactive
booleano
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
Chave + Carregador
Add information to request from customers.
type_id
inteiro
Optional
0 or omitted for every type.
label_fr
string
Necessário
French label.
label_en
string
Optional
English label.
field_type
enum
Necessário
text | textarea | select | boolean | date | number
options
array
Optional
Required for select.
required
booleano
Optional
Required answer.
sort_order
inteiro
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
Chave + Carregador
Update a custom request field.
id
inteiro
Necessário
Field identifier.
type_id
inteiro
Optional
Linked type or 0.
label_fr
string
Necessário
French label.
label_en
string
Optional
English label.
field_type
enum
Necessário
text | textarea | select | boolean | date | number
options
array
Optional
Menu options.
required
booleano
Optional
Required answer.
active
booleano
Optional
Visible field.
sort_order
inteiro
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
Chave + Carregador
Delete or archive a custom request field.
id
inteiro
Necessário
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"
}
}
}Pontos finais
Synchronise field teams, skills and roles, then assign every intervention to the right technician.
/case/technician/list
Chave + Carregador
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
Chave + Carregador
Retrieve a technician’s complete professional record.
technician_id
inteiro
Necessário
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
Chave + Carregador
Create or update a technician account’s professional profile.
technician_id
inteiro
Necessário
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
booleano
Optional
Available for emergencies.
internal_notes
string
Optional
Internal notes hidden in the app.
profile_color
string
Optional
#RRGGBB
active
booleano
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
Chave + Carregador
Assign the Customer or Technician role to a mobile account.
customer_id
inteiro
Necessário
Mobile account.
role
enum
Necessário
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
Chave + Carregador
Allow the assigned technician to update status and progress.
case_id
inteiro
Necessário
Service assigned to the signed-in technician.
status
enum
Necessário
planned | in_progress | waiting_customer | completed
progress
inteiro
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"
}
}
}Pontos finais
Prepare procedures, retrieve applied steps and record field completion.
/case/checklist/list
Chave + Carregador
Retrieve the checklist and progress for an authorised case.
case_id
inteiro
Necessário
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
Chave + Carregador
Set the private mission visible only to the assigned technician.
case_id
inteiro
Necessário
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
Chave + Carregador
Complete or reopen a step; assigned technician or supplier only.
case_id
inteiro
Necessário
Case assigned to the technician.
item_id
inteiro
Necessário
Checklist step.
completed
booleano
Necessário
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
Chave + Carregador
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
Chave + Carregador
Create a global checklist or one linked to an intervention type.
type_id
inteiro
Optional
Omit or use 0 for every type.
title_fr
string
Necessário
French title.
title_en
string
Optional
English title.
items
array
Necessário
Steps as strings or objects with label_fr, label_en, required and sort_order.
active
booleano
Optional
Active by default.
sort_order
inteiro
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
Chave + Carregador
Update a template and safely replace its steps.
id
inteiro
Necessário
Template identifier.
type_id
inteiro
Optional
Linked type or 0.
title_fr
string
Necessário
French title.
title_en
string
Optional
English title.
items
array
Necessário
Complete list replacing template steps.
active
booleano
Optional
Availability.
sort_order
inteiro
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
Chave + Carregador
Delete an unused template or archive an applied template.
id
inteiro
Necessário
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"
}
}
}Pontos finais
Start, stop, add and audit technician time for every case.
/case/time/list
Chave + Carregador
List time entries and total tracked time for an authorised case.
case_id
inteiro
Necessário
Case assigned to the technician; supplier access is read-only.
technician_id
inteiro
Optional
Supplier access only; assigned technician by default.
include_deleted
booleano
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
Chave + Carregador
Start a live timer for the assigned technician.
case_id
inteiro
Necessário
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
Chave + Carregador
Stop and calculate the active time entry.
case_id
inteiro
Necessário
Case containing the active time entry.
entry_id
inteiro
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
Chave + Carregador
Manually add a date, start time and end time.
case_id
inteiro
Necessário
Case assigned to the signed-in technician.
started_at
datetime
Necessário
ISO 8601 date and time with timezone.
ended_at
datetime
Necessário
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
Chave + Carregador
Soft-delete a time entry with a mandatory reason retained in the audit trail.
entry_id
inteiro
Necessário
Completed entry belonging to the technician.
reason
string
Necessário
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"
}
}
}Pontos finais
Exchange data with the app, classify documents, send photos and retrieve authorised files.
/case/message/send
Chave + Carregador
Add a message to the case; the sender is identified automatically from the authenticated account.
case_id
inteiro
Necessário
Case identifier.
message
string
Necessário
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
Chave + Carregador
List document types visible in the mobile app.
include_inactive
booleano
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
Chave + Carregador
Create a document type for the shop.
label_fr
string
Necessário
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
inteiro
Optional
Display order.
active
booleano
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
Chave + Carregador
Edit, reorder or hide a document type.
id
inteiro
Necessário
Type identifier.
label_fr
string
Necessário
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
inteiro
Optional
Display order.
active
booleano
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
Chave + Carregador
Delete an unused type or archive a type already in use.
id
inteiro
Necessário
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
Chave + Carregador
List all authorised documents newest first with their customer, technician or administrator source.
page
inteiro
Optional
Número da página, começando em 1.
per_page
inteiro
Optional
Number of results per page.
customer_id
inteiro
Optional
Supplier-only filter.
case_id
inteiro
Optional
Limit to one case.
unlinked_only
booleano
Optional
Return only documents not linked to a case.
document_type_id
inteiro
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
Chave + Carregador
Add one or more photos, PDFs, documents or signatures, optionally linked to a checklist step.
case_id
inteiro
Optional
Optional case. Required when checklist_item_id is provided.
customer_id
inteiro
Optional
Required with a supplier token when case_id is absent; ignored for an authenticated customer.
document_type_id
inteiro
Optional
Classification type; an active default is used when omitted.
checklist_item_id
inteiro
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
booleano
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
Necessário
File name.
mime_type
enum
Necessário
image/jpeg | image/png | image/webp | application/pdf
content_base64
base64
Necessário
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
Chave + Carregador
Download the Base64 content of an authorised document.
id
inteiro
Necessário
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
Chave + Carregador
Load an optimised image thumbnail before opening and zooming.
id
inteiro
Necessário
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
Chave + Carregador
Delete a document that is not attached to a quote.
id
inteiro
Necessário
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"
}
}
}Pontos finais
Create detailed quotes, retrieve customer decisions and manage final intervention approval.
/case/quote/create
Chave + Carregador
Create and send a detailed quote with lines, discounts, VAT and an optional attachment.
case_id
inteiro
Necessário
Case identifier.
lines
array
Necessário
1 to 100 objects: description, quantity, unit_price, discount_percent and tax_rate.
notes
string
Optional
Maximum 5,000 characters.
valid_until
data
Optional
AAAA-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
Chave + Carregador
Accept or reject a quote sent to the customer.
case_id
inteiro
Necessário
Case identifier.
quote_id
inteiro
Necessário
Quote identifier.
decision
enum
Necessário
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
Chave + Carregador
Request customer approval and signature.
case_id
inteiro
Necessário
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
Chave + Carregador
Record the customer signature, either directly by the customer or on the assigned technician’s phone.
case_id
inteiro
Necessário
Case identifier accessible to the customer or assigned technician.
validation_type
string
Optional
Defaults to completion.
signature_name
string
Necessário
Name of the customer signing.
signature_base64
base64
Necessário
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"
}
}
}Pontos finais
Automate recurring interventions and produce structured final-report data.
/case/recurrence/list
Chave + Carregador
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
Chave + Carregador
Create a recurrence from a source case.
source_case_id
inteiro
Necessário
Case used as the template.
frequency
enum
Necessário
daily | weekly | monthly | yearly
interval_value
inteiro
Optional
1 - 52
next_run_at
datetime
Necessário
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
Chave + Carregador
Update a recurring service.
id
inteiro
Necessário
Recurrence identifier.
source_case_id
inteiro
Necessário
Source case.
frequency
enum
Necessário
daily | weekly | monthly | yearly
interval_value
inteiro
Optional
1 - 52
next_run_at
datetime
Necessário
YYYY-MM-DD HH:MM:SS
end_at
datetime
Optional
Optional end date.
active
booleano
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
Chave + Carregador
Stop a recurring service.
id
inteiro
Necessário
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
Chave + Carregador
Generate recurring services that are due.
limit
inteiro
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
Chave + Carregador
Prepare the final report with fields and before/after photos.
case_id
inteiro
Necessário
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"
}
}
}Pontos finais
Retrieve customer or technician alerts and synchronise their read status.
/case/notification/list
Chave + Carregador
List automatic notifications for the signed-in customer or technician.
limit
inteiro
Optional
1 - 100
recipient_type
enum
Optional
Supplier token only: customer or technician.
recipient_id
inteiro
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
Chave + Carregador
Mark one or every notification as read.
id
inteiro
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"
}
}
}Pontos finais
Supply procedures, FAQs and technical documents available to technicians in the mobile app.
/case/knowledge/categories
Chave + Carregador
List knowledge-base categories. On mobile, access is restricted to active technicians.
include_inactive
booleano
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
Chave + Carregador
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
inteiro
Optional
Filter by category.
type
enum
Optional
faq | information | procedure | document
page
inteiro
Optional
Page, defaults to 1.
limit
inteiro
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
Chave + Carregador
Open an entry and list its attachments without loading large files.
id
inteiro
Necessário
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
Chave + Carregador
Download an authorised Base64 attachment.
id
inteiro
Necessário
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
Chave + Carregador
Create a knowledge category.
title_fr
string
Necessário
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
booleano
Optional
Visible by default.
sort_order
inteiro
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
Chave + Carregador
Edit, reorder or hide a category.
id
inteiro
Necessário
Category identifier.
title_fr
string
Necessário
French title.
title_en
string
Optional
English title.
active
booleano
Optional
Visibility.
sort_order
inteiro
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
Chave + Carregador
Delete a category while retaining its entries as uncategorised.
id
inteiro
Necessário
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
Chave + Carregador
Create a FAQ, information entry, procedure or documentation.
category_id
inteiro
Optional
Optional category.
content_type
enum
Necessário
faq | information | procedure | document
title_fr
string
Necessário
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
booleano
Optional
Featured.
active
booleano
Optional
Published.
sort_order
inteiro
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
Chave + Carregador
Edit and publish an entry.
id
inteiro
Necessário
Entry identifier.
content_type
enum
Necessário
faq | information | procedure | document
title_fr
string
Necessário
French title.
title_en
string
Optional
English title.
content_fr
string
Optional
French content.
content_en
string
Optional
English content.
active
booleano
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
Chave + Carregador
Delete an entry and its attachments.
id
inteiro
Necessário
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
Chave + Carregador
Attach a document up to 8 MB.
article_id
inteiro
Necessário
Parent entry.
title_fr
string
Optional
French title.
title_en
string
Optional
English title.
file_name
string
Necessário
File name.
mime_type
string
Necessário
Allowed MIME type.
content_base64
base64
Necessário
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
Chave + Carregador
Delete an attachment.
id
inteiro
Necessário
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.