DELETE /api/sales/status/{id} HTTP/1.1 Host: api.zydon.com.br Authorization: Bearer JWT Accept: */*
Status removed
{ "id": "123e4567-e89b-12d3-a456-426614174000" }
""
0
25
id
asc
GET /api/sales/status HTTP/1.1 Host: api.zydon.com.br Authorization: Bearer JWT Accept: */*
Status listed
{ "currentPage": 1, "perPage": 1, "total": 1, "items": [ { "id": "123e4567-e89b-12d3-a456-426614174000", "name": "text", "title": "text", "sub_title": "text", "type": "PENDING", "can_edit_by_customer": true, "can_edit_by_api": true, "show_in_portal": true, "background_color": "text", "font_color": "text", "created_by": "123e4567-e89b-12d3-a456-426614174000", "created_at": "2025-05-18T08:45:43.221Z", "updated_by": "123e4567-e89b-12d3-a456-426614174000", "updated_at": "2025-05-18T08:45:43.221Z" } ] }
GET /api/sales/status/{id} HTTP/1.1 Host: api.zydon.com.br Authorization: Bearer JWT Accept: */*
Status retrieved
{ "id": "123e4567-e89b-12d3-a456-426614174000", "name": "text", "title": "text", "sub_title": "text", "type": "PENDING", "can_edit_by_customer": true, "can_edit_by_api": true, "show_in_portal": true, "background_color": "text", "font_color": "text", "relations": [ { "id": "123e4567-e89b-12d3-a456-426614174000", "destiny": { "id": "123e4567-e89b-12d3-a456-426614174000", "name": "text", "title": "text" }, "created_by": "123e4567-e89b-12d3-a456-426614174000", "created_at": "2025-05-18T08:45:43.221Z", "updated_by": "123e4567-e89b-12d3-a456-426614174000", "updated_at": "2025-05-18T08:45:43.221Z" } ], "created_by": "123e4567-e89b-12d3-a456-426614174000", "created_at": "2025-05-18T08:45:43.221Z", "updated_by": "123e4567-e89b-12d3-a456-426614174000", "updated_at": "2025-05-18T08:45:43.221Z" }
PENDING
PAID
INVOICED
CANCELLED
PUT /api/sales/status/{id} HTTP/1.1 Host: api.zydon.com.br Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 316 { "title": "text", "sub_title": "text", "type": "PENDING", "can_edit_by_customer": true, "can_edit_by_api": true, "show_in_portal": true, "background_color": "text", "font_color": "text", "relations": [ { "id": "123e4567-e89b-12d3-a456-426614174000", "destiny": { "id": "123e4567-e89b-12d3-a456-426614174000", "name": "text", "title": "text" } } ] }
Status updated
{ "id": "123e4567-e89b-12d3-a456-426614174000", "name": "text", "title": "text", "sub_title": "text", "type": "PENDING", "can_edit_by_customer": true, "can_edit_by_api": true, "show_in_portal": true, "background_color": "text", "font_color": "text", "created_by": "123e4567-e89b-12d3-a456-426614174000", "created_at": "2025-05-18T08:45:43.221Z", "updated_by": "123e4567-e89b-12d3-a456-426614174000", "updated_at": "2025-05-18T08:45:43.221Z" }
POST /api/sales/status HTTP/1.1 Host: api.zydon.com.br Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 286 { "name": "text", "title": "text", "sub_title": "text", "type": "PENDING", "can_edit_by_customer": true, "can_edit_by_api": true, "show_in_portal": true, "background_color": "text", "font_color": "text", "relations": [ { "destiny": { "id": "123e4567-e89b-12d3-a456-426614174000", "name": "text", "title": "text" } } ] }
Status created