diff --git a/CHANGELOG.md b/CHANGELOG.md index 707e1ab..54c095c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [1.4.1] - 2026-09-14 + +### Changed + +- Track the inspection API's renamed submission answers: `answers` with a `field` per entry, replacing `custom_field_values` with `custom_field`. Both older spellings are still accepted by the API, and the SDK forwards whichever is given without rewriting it. + ## [1.4.0] - 2026-09-12 ### Added diff --git a/README.md b/README.md index 2be9d69..5b82f4b 100644 --- a/README.md +++ b/README.md @@ -118,8 +118,8 @@ $inspection = $fleetbase->inspections->submitInspection([ 'inspection_form' => $formId, 'driver' => $driverId, 'vehicle' => $vehicleId, - 'custom_field_values' => [ - ['custom_field' => $fieldId, 'value_type' => 'object', 'value' => ['passed' => true]], + 'answers' => [ + ['field' => $fieldId, 'value_type' => 'object', 'value' => ['passed' => true]], ], ], ['headers' => ['Idempotency-Key' => $submissionKey]]); $inspection = $fleetbase->inspections->retrieveInspection($inspectionId); @@ -127,7 +127,7 @@ $inspections = $fleetbase->inspections->listInspections(['driver' => $driverId]) $history = $fleetbase->vehicles->listVehicleInspections($vehicleId, ['limit' => 30]); ``` -Read the form's `grouped_fields` to obtain field IDs and required answer types. Reuse the same caller-generated idempotency key when replaying one submission; generate a new key for a new inspection. The SDK passes the key through to the API and does not implement its own deduplication. Forms are published in the console, not created through this public API. Form authoring, submission updates/deletion, and public inspection-link management are not supported public endpoints. +Read the form's `grouped_fields` to obtain field IDs and required answer types; a field's `id` is what an answer names, and it is the same id the submission answers with. `answers` was called `custom_field_values`, and each answer's `field` was called `custom_field`; both older spellings are still accepted on submit. Reuse the same caller-generated idempotency key when replaying one submission; generate a new key for a new inspection. The SDK passes the key through to the API and does not implement its own deduplication. Forms are published in the console, not created through this public API. Form authoring, submission updates/deletion, and public inspection-link management are not supported public endpoints. ## Configuration diff --git a/contracts/contract-lock.json b/contracts/contract-lock.json index e6f807c..998fea0 100644 --- a/contracts/contract-lock.json +++ b/contracts/contract-lock.json @@ -24,7 +24,7 @@ "postman": { "repository": "https://github.com/fleetbase/postman", "ref": "origin/main", - "commit": "d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb", + "commit": "822b867218f174bad18a789d4fd6791ccfd2af34", "scope": [ "Fleetbase API", "Fleetbase Core API" @@ -40,7 +40,7 @@ "fleetops": { "repository": "https://github.com/fleetbase/fleetops", "ref": "refs/pull/319/head", - "commit": "db671b6fac44b92757e9004896ac60c594917ce3" + "commit": "9f2ffe9873c16d4df20ea143839ff3f4425781c0" } } } diff --git a/contracts/php-sdk-examples.json b/contracts/php-sdk-examples.json index 6d070c4..6a41306 100644 --- a/contracts/php-sdk-examples.json +++ b/contracts/php-sdk-examples.json @@ -2,7 +2,7 @@ "schema_version": 1, "generated_from": { "repository": "https://github.com/fleetbase/postman", - "ref": "d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb", + "ref": "822b867218f174bad18a789d4fd6791ccfd2af34", "collections": [ "Fleetbase API", "Fleetbase Core API" @@ -1087,8 +1087,8 @@ "name": "Submit an Inspection", "implementation": "Fleetbase\\Sdk\\Services\\InspectionService::submitInspection", "variables": [], - "call": "$result = $fleetbase->inspections->submitInspection(\n [\n 'inspection_form' => 'inspection_form_id-fixture',\n 'driver' => 'driver_id-fixture',\n 'vehicle' => 'vehicle_id-fixture',\n 'started_at' => '2026-09-09T07:10:00Z',\n 'odometer' => 120400,\n 'engine_hours' => 3100,\n 'location' => [\n 'latitude' => 1.3521,\n 'longitude' => 103.8198,\n ],\n 'custom_field_values' => [],\n 'item_results' => [\n [\n 'item_key' => 'brakes',\n 'label' => 'Brakes',\n 'category' => 'Safety',\n 'passed' => false,\n 'severity' => 'critical',\n 'comments' => 'Pedal is soft.',\n 'photos' => [\n 'proof_photo_base64-fixture',\n ],\n ],\n [\n 'item_key' => 'lights',\n 'label' => 'Lights',\n 'category' => 'Safety',\n 'passed' => true,\n ],\n ],\n ]\n);", - "code": "inspections->submitInspection(\n [\n 'inspection_form' => 'inspection_form_id-fixture',\n 'driver' => 'driver_id-fixture',\n 'vehicle' => 'vehicle_id-fixture',\n 'started_at' => '2026-09-09T07:10:00Z',\n 'odometer' => 120400,\n 'engine_hours' => 3100,\n 'location' => [\n 'latitude' => 1.3521,\n 'longitude' => 103.8198,\n ],\n 'custom_field_values' => [],\n 'item_results' => [\n [\n 'item_key' => 'brakes',\n 'label' => 'Brakes',\n 'category' => 'Safety',\n 'passed' => false,\n 'severity' => 'critical',\n 'comments' => 'Pedal is soft.',\n 'photos' => [\n 'proof_photo_base64-fixture',\n ],\n ],\n [\n 'item_key' => 'lights',\n 'label' => 'Lights',\n 'category' => 'Safety',\n 'passed' => true,\n ],\n ],\n ]\n);" + "call": "$result = $fleetbase->inspections->submitInspection(\n [\n 'inspection_form' => 'inspection_form_id-fixture',\n 'driver' => 'driver_id-fixture',\n 'vehicle' => 'vehicle_id-fixture',\n 'started_at' => '2026-09-09T07:10:00Z',\n 'odometer' => 120400,\n 'engine_hours' => 3100,\n 'location' => [\n 'latitude' => 1.3521,\n 'longitude' => 103.8198,\n ],\n 'answers' => [\n [\n 'field' => 'inspection_pass_fail_field_id-fixture',\n 'value_type' => 'object',\n 'value' => [\n 'passed' => false,\n 'not_applicable' => false,\n 'severity' => 'critical',\n 'comments' => 'Pedal is soft.',\n 'photos' => [\n 'proof_photo_base64-fixture',\n ],\n 'unsafe' => true,\n ],\n ],\n [\n 'field' => 'inspection_number_field_id-fixture',\n 'value_type' => 'number',\n 'value' => 120400,\n ],\n ],\n 'item_results' => [\n [\n 'item_key' => 'brakes',\n 'label' => 'Brakes',\n 'category' => 'Safety',\n 'passed' => false,\n 'severity' => 'critical',\n 'comments' => 'Pedal is soft.',\n 'photos' => [\n 'proof_photo_base64-fixture',\n ],\n ],\n [\n 'item_key' => 'lights',\n 'label' => 'Lights',\n 'category' => 'Safety',\n 'passed' => true,\n ],\n ],\n ]\n);", + "code": "inspections->submitInspection(\n [\n 'inspection_form' => 'inspection_form_id-fixture',\n 'driver' => 'driver_id-fixture',\n 'vehicle' => 'vehicle_id-fixture',\n 'started_at' => '2026-09-09T07:10:00Z',\n 'odometer' => 120400,\n 'engine_hours' => 3100,\n 'location' => [\n 'latitude' => 1.3521,\n 'longitude' => 103.8198,\n ],\n 'answers' => [\n [\n 'field' => 'inspection_pass_fail_field_id-fixture',\n 'value_type' => 'object',\n 'value' => [\n 'passed' => false,\n 'not_applicable' => false,\n 'severity' => 'critical',\n 'comments' => 'Pedal is soft.',\n 'photos' => [\n 'proof_photo_base64-fixture',\n ],\n 'unsafe' => true,\n ],\n ],\n [\n 'field' => 'inspection_number_field_id-fixture',\n 'value_type' => 'number',\n 'value' => 120400,\n ],\n ],\n 'item_results' => [\n [\n 'item_key' => 'brakes',\n 'label' => 'Brakes',\n 'category' => 'Safety',\n 'passed' => false,\n 'severity' => 'critical',\n 'comments' => 'Pedal is soft.',\n 'photos' => [\n 'proof_photo_base64-fixture',\n ],\n ],\n [\n 'item_key' => 'lights',\n 'label' => 'Lights',\n 'category' => 'Safety',\n 'passed' => true,\n ],\n ],\n ]\n);" }, "fleetbase-api-issues-create-an-issue": { "collection": "Fleetbase API", diff --git a/contracts/postman-manifest.json b/contracts/postman-manifest.json index 7285115..09da10c 100644 --- a/contracts/postman-manifest.json +++ b/contracts/postman-manifest.json @@ -2,7 +2,7 @@ "schema_version": 1, "source": { "repository": "https://github.com/fleetbase/postman", - "ref": "d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb", + "ref": "822b867218f174bad18a789d4fd6791ccfd2af34", "collections": [ "Fleetbase API", "Fleetbase Core API" @@ -3962,7 +3962,7 @@ "method": "GET", "url": "{{base_url}}/{{namespace}}/inspections", "source": "postman/collections/Fleetbase API/Inspections/List Inspections.request.yaml", - "description": "Lists filed inspections, newest first.\n\nNarrow by `driver` or `vehicle`, and by `type`, `result` and `status`, each as one value or a comma separated list. Defaults to a recent window rather than the organisation's whole history; use `limit` to widen it.\n\nEach row carries the same shape Retrieve an Inspection answers with: the answers as `custom_field_values`, the `item_results` derived from them, and the `files` filed with the inspection.", + "description": "Lists filed inspections, newest first.\n\nNarrow by `driver` or `vehicle`, and by `type`, `result` and `status`, each as one value or a comma separated list. Defaults to a recent window rather than the organisation's whole history; use `limit` to widen it.\n\nEach row carries the same shape Retrieve an Inspection answers with: the `answers`, the `item_results` derived from them, and the `files` filed with the inspection.", "authentication": "fleetbase-api-key", "request_fixture": { "path_variables": [], @@ -3995,7 +3995,7 @@ "method": "GET", "url": "{{base_url}}/{{namespace}}/vehicles/:id/inspections", "source": "postman/collections/Fleetbase API/Inspections/List Vehicle Inspections.request.yaml", - "description": "Lists a vehicle's inspection history, newest first \u2014 the same inspections List Inspections answers with `vehicle`, addressed the way the driver app holds them, from the vehicle's screen.\n\nNarrow by `type`, `result` and `status`, each as one value or a comma separated list.\n\nEach row carries the answers as `custom_field_values`, the `item_results` derived from them, and the `files` filed with the inspection.", + "description": "Lists a vehicle's inspection history, newest first \u2014 the same inspections List Inspections answers with `vehicle`, addressed the way the driver app holds them, from the vehicle's screen.\n\nNarrow by `type`, `result` and `status`, each as one value or a comma separated list.\n\nEach row carries the `answers`, the `item_results` derived from them, and the `files` filed with the inspection.", "authentication": "fleetbase-api-key", "request_fixture": { "path_variables": { @@ -4030,7 +4030,7 @@ "method": "GET", "url": "{{base_url}}/{{namespace}}/inspections/:id", "source": "postman/collections/Fleetbase API/Inspections/Retrieve an Inspection.request.yaml", - "description": "Retrieves one inspection with everything it produced: `custom_field_values` \u2014 the driver's answers, each beside the field's `name`, `label` and `type`, with every photo and signature resolved to `{ id, url, filename, content_type }` \u2014 the `item_results` derived from the `pass-fail` answers, the `files` filed with it, and the `issue` and `work_order` raised from any failed items.", + "description": "Retrieves one inspection with everything it produced: the `answers` \u2014 one per field the driver answered, each naming the `field` it answers beside that field's `name`, `label` and `type`, with every photo and signature resolved to `{ id, url, filename, content_type }` \u2014 the `item_results` derived from the `pass-fail` answers, the `files` filed with it, and the `issue` and `work_order` raised from any failed items.", "authentication": "fleetbase-api-key", "request_fixture": { "path_variables": { @@ -4100,7 +4100,7 @@ "method": "POST", "url": "{{base_url}}/{{namespace}}/inspections", "source": "postman/collections/Fleetbase API/Inspections/Submit an Inspection.request.yaml", - "description": "Files an inspection against a published form, as the driver app does at the end of a DVIR.\n\nA form built from typed fields is answered with `custom_field_values`: one entry per field the driver answered, naming the field by the `id` the form read gave it, with a `value_type` and a `value`. A `pass-fail` answer is an object \u2014 `passed`, `not_applicable`, `severity`, `comments`, `photos` and `unsafe`; a meter is a number, a signature or a photo is base64. The server stores every photo and signature as a file and answers with `file:` references resolved, and mirrors each `pass-fail` answer into an `item_results` row, which is what issues, work orders and the vehicle's history are built from.\n\nThe first cut's flat `item_results` body is still accepted, for the tokenised public link and for older app builds. When both arrive the field values win and the duplicated results are ignored \u2014 which is exactly what the app sends, so one body works against either cut.\n\nA failed `pass-fail` answer must carry whatever its field insists on: a form that sets `require_comment_on_fail` or `require_photo_on_fail` refuses the whole submission with a 422 rather than filing half an inspection.\n\nWithout `vehicle` the inspection is recorded against the vehicle the driver is currently assigned to. Without `started_at` the inspection is taken to have started when it was filed.\n\nThe app queues a submit while offline and replays it later. Send an `Idempotency-Key` header with each attempt: a replay with a key already used by the same driver answers with the inspection the first attempt filed rather than filing a second one.\n\nThe response is the inspection with its `custom_field_values`, `item_results` and `files`, and the `issue` and `work_order` the form's settings raised from any failed items.", + "description": "Files an inspection against a published form, as the driver app does at the end of a DVIR.\n\nA form built from typed fields is answered with `answers`: one entry per field the driver answered, naming the `field` by the `id` the form read gave it, with a `value` and, optionally, a `value_type`. `custom_field_values` is the previous name for this and is still accepted. A `pass-fail` answer is an object \u2014 `passed`, `not_applicable`, `severity`, `comments`, `photos` and `unsafe`; a meter is a number, a signature or a photo is base64. The server stores every photo and signature as a file and answers with `file:` references resolved, and mirrors each `pass-fail` answer into an `item_results` row, which is what issues, work orders and the vehicle's history are built from.\n\nThe first cut's flat `item_results` body is still accepted, for the tokenised public link and for older app builds. It is the older shape: an entry per checklist item rather than per field, naming the item by an `item_key` of its own instead of naming a field of the form. Send `answers` unless you are targeting an older server.\n\nThis request deliberately sends both, which is what the app does: when both arrive the answers win and the duplicated results are ignored, so one body works against either cut.\n\nA failed `pass-fail` answer must carry whatever its field insists on: a form that sets `require_comment_on_fail` or `require_photo_on_fail` refuses the whole submission with a 422 rather than filing half an inspection.\n\nWithout `vehicle` the inspection is recorded against the vehicle the driver is currently assigned to. Without `started_at` the inspection is taken to have started when it was filed.\n\nThe app queues a submit while offline and replays it later. Send an `Idempotency-Key` header with each attempt: a replay with a key already used by the same driver answers with the inspection the first attempt filed rather than filing a second one.\n\nThe response is the inspection with its `answers`, `item_results` and `files`, and the `issue` and `work_order` the form's settings raised from any failed items.", "authentication": "fleetbase-api-key", "request_fixture": { "path_variables": [], @@ -4117,7 +4117,27 @@ "latitude": 1.3521, "longitude": 103.8198 }, - "custom_field_values": [], + "answers": [ + { + "field": "inspection_pass_fail_field_id-fixture", + "value_type": "object", + "value": { + "passed": false, + "not_applicable": false, + "severity": "critical", + "comments": "Pedal is soft.", + "photos": [ + "proof_photo_base64-fixture" + ], + "unsafe": true + } + }, + { + "field": "inspection_number_field_id-fixture", + "value_type": "number", + "value": 120400 + } + ], "item_results": [ { "item_key": "brakes", diff --git a/contracts/service-map.json b/contracts/service-map.json index a1e99fd..d64bc96 100644 --- a/contracts/service-map.json +++ b/contracts/service-map.json @@ -2,7 +2,7 @@ "schema_version": 1, "generated_from": { "repository": "https://github.com/fleetbase/postman", - "ref": "d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb", + "ref": "822b867218f174bad18a789d4fd6791ccfd2af34", "collections": [ "Fleetbase API", "Fleetbase Core API" diff --git a/docs/api-coverage.md b/docs/api-coverage.md index facde33..cc2fef2 100644 --- a/docs/api-coverage.md +++ b/docs/api-coverage.md @@ -1,278 +1,278 @@ # Fleetbase PHP SDK API coverage -Generated from the locked Postman contract at `d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb`. This matrix contains exactly 270 requests. +Generated from the locked Postman contract at `822b867218f174bad18a789d4fd6791ccfd2af34`. This matrix contains exactly 270 requests. “Mapped” means the public method and deterministic request fixture test exist. Live contract verification remains a separate isolated-stack release gate. | Collection / request | Method and path | Authentication | SDK service / action | Request fixture | Response fixture | Error fixture | Deterministic test | Live contract | Status | |---|---|---|---|---|---|---|---|---|---| -| [Fleetbase API / Create a Contact](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Contacts/Create%20a%20Contact.request.yaml) | `POST {{base_url}}/{{namespace}}/contacts` | fleetbase-api-key | `Fleetbase\Sdk\Services\ContactService::createContact` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Contacts/Create%20a%20Contact.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Contacts/.resources/Create%20a%20Contact.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Contact](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Contacts/Delete%20a%20Contact.request.yaml) | `DELETE {{base_url}}/{{namespace}}/contacts/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ContactService::deleteContact` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Contacts/Delete%20a%20Contact.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Contacts/.resources/Delete%20a%20Contact.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Contacts](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Contacts/Query%20Contacts.request.yaml) | `GET {{base_url}}/{{namespace}}/contacts` | fleetbase-api-key | `Fleetbase\Sdk\Services\ContactService::queryContacts` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Contacts/Query%20Contacts.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Contacts/.resources/Query%20Contacts.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Contact](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Contacts/Retrieve%20a%20Contact.request.yaml) | `GET {{base_url}}/{{namespace}}/contacts/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ContactService::retrieveContact` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Contacts/Retrieve%20a%20Contact.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Contacts/.resources/Retrieve%20a%20Contact.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Contact](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Contacts/Update%20a%20Contact.request.yaml) | `PUT {{base_url}}/{{namespace}}/contacts/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ContactService::updateContact` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Contacts/Update%20a%20Contact.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Contacts/.resources/Update%20a%20Contact.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Customer](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Create%20a%20Customer.request.yaml) | `POST {{base_url}}/{{namespace}}/customers` | fleetbase-api-key | `Fleetbase\Sdk\Services\CustomerService::createCustomer` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Create%20a%20Customer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Customer Order](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Create%20a%20Customer%20Order.request.yaml) | `POST {{base_url}}/{{namespace}}/customers/orders` | customer-token | `Fleetbase\Sdk\Services\CustomerService::createCustomerOrder` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Create%20a%20Customer%20Order.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Forgot Customer Password](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Forgot%20Customer%20Password.request.yaml) | `POST {{base_url}}/{{namespace}}/customers/forgot-password` | fleetbase-api-key | `Fleetbase\Sdk\Services\CustomerService::forgotCustomerPassword` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Forgot%20Customer%20Password.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / List Customer Orders](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/List%20Customer%20Orders.request.yaml) | `GET {{base_url}}/{{namespace}}/customers/orders` | customer-token | `Fleetbase\Sdk\Services\CustomerService::listCustomerOrders` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/List%20Customer%20Orders.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / List Customer Places](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/List%20Customer%20Places.request.yaml) | `GET {{base_url}}/{{namespace}}/customers/places` | customer-token | `Fleetbase\Sdk\Services\CustomerService::listCustomerPlaces` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/List%20Customer%20Places.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Login Customer](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Login%20Customer.request.yaml) | `POST {{base_url}}/{{namespace}}/customers/login` | fleetbase-api-key | `Fleetbase\Sdk\Services\CustomerService::loginCustomer` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Login%20Customer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Logout All Customer Sessions](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Logout%20All%20Customer%20Sessions.request.yaml) | `POST {{base_url}}/{{namespace}}/customers/logout-all` | customer-token | `Fleetbase\Sdk\Services\CustomerService::logoutAllCustomerSessions` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Logout%20All%20Customer%20Sessions.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Logout Customer](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Logout%20Customer.request.yaml) | `POST {{base_url}}/{{namespace}}/customers/logout` | customer-token | `Fleetbase\Sdk\Services\CustomerService::logoutCustomer` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Logout%20Customer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Register Customer Device](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Register%20Customer%20Device.request.yaml) | `POST {{base_url}}/{{namespace}}/customers/register-device` | customer-token | `Fleetbase\Sdk\Services\CustomerService::registerCustomerDevice` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Register%20Customer%20Device.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Request Customer Creation Code](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Request%20Customer%20Creation%20Code.request.yaml) | `POST {{base_url}}/{{namespace}}/customers/request-creation-code` | fleetbase-api-key | `Fleetbase\Sdk\Services\CustomerService::requestCustomerCreationCode` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Request%20Customer%20Creation%20Code.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Request Customer Login SMS](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Request%20Customer%20Login%20SMS.request.yaml) | `POST {{base_url}}/{{namespace}}/customers/login-with-sms` | fleetbase-api-key | `Fleetbase\Sdk\Services\CustomerService::requestCustomerLoginSms` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Request%20Customer%20Login%20SMS.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Reset Customer Password](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Reset%20Customer%20Password.request.yaml) | `POST {{base_url}}/{{namespace}}/customers/reset-password` | fleetbase-api-key | `Fleetbase\Sdk\Services\CustomerService::resetCustomerPassword` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Reset%20Customer%20Password.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve Authenticated Customer](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Retrieve%20Authenticated%20Customer.request.yaml) | `GET {{base_url}}/{{namespace}}/customers/me` | customer-token | `Fleetbase\Sdk\Services\CustomerService::retrieveAuthenticatedCustomer` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Retrieve%20Authenticated%20Customer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Customer Order](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Retrieve%20a%20Customer%20Order.request.yaml) | `GET {{base_url}}/{{namespace}}/customers/orders/{{customer_order_id}}` | customer-token | `Fleetbase\Sdk\Services\CustomerService::retrieveCustomerOrder` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Retrieve%20a%20Customer%20Order.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update Authenticated Customer](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Update%20Authenticated%20Customer.request.yaml) | `PUT {{base_url}}/{{namespace}}/customers/me` | customer-token | `Fleetbase\Sdk\Services\CustomerService::updateAuthenticatedCustomer` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Update%20Authenticated%20Customer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Verify Customer Login Code](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Verify%20Customer%20Login%20Code.request.yaml) | `POST {{base_url}}/{{namespace}}/customers/verify-code` | fleetbase-api-key | `Fleetbase\Sdk\Services\CustomerService::verifyCustomerLoginCode` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Customers/Verify%20Customer%20Login%20Code.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Attach Device](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/Attach%20Device.request.yaml) | `POST {{base_url}}/{{namespace}}/devices/{{device_id}}/attach` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::attachDevice` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/Attach%20Device.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/.resources/Attach%20Device.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Device](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/Create%20a%20Device.request.yaml) | `POST {{base_url}}/{{namespace}}/devices` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::createDevice` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/Create%20a%20Device.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/.resources/Create%20a%20Device.resources/examples/Created.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Device](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/Delete%20a%20Device.request.yaml) | `DELETE {{base_url}}/{{namespace}}/devices/{{device_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::deleteDevice` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/Delete%20a%20Device.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/.resources/Delete%20a%20Device.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Detach Device](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/Detach%20Device.request.yaml) | `POST {{base_url}}/{{namespace}}/devices/{{device_id}}/detach` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::detachDevice` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/Detach%20Device.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/.resources/Detach%20Device.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Devices](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/Query%20Devices.request.yaml) | `GET {{base_url}}/{{namespace}}/devices` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::queryDevices` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/Query%20Devices.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/.resources/Query%20Devices.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Device](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/Retrieve%20a%20Device.request.yaml) | `GET {{base_url}}/{{namespace}}/devices/{{device_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::retrieveDevice` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/Retrieve%20a%20Device.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/.resources/Retrieve%20a%20Device.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Device](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/Update%20a%20Device.request.yaml) | `PUT {{base_url}}/{{namespace}}/devices/{{device_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::updateDevice` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/Update%20a%20Device.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Devices/.resources/Update%20a%20Device.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Change Driver Password](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Change%20Driver%20Password.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/:id/change-password` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::changeDriverPassword` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Change%20Driver%20Password.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Driver](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Create%20a%20Driver.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::createDriver` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Create%20a%20Driver.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/.resources/Create%20a%20Driver.resources/examples/OK.example.yaml), [422](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/.resources/Create%20a%20Driver.resources/examples/Unprocessable%20Entity.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create an Operational Driver](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Create%20an%20Operational%20Driver.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::createDriver` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Create%20an%20Operational%20Driver.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/.resources/Create%20an%20Operational%20Driver.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Driver](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Delete%20a%20Driver.request.yaml) | `DELETE {{base_url}}/{{namespace}}/drivers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::deleteDriver` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Delete%20a%20Driver.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/.resources/Delete%20a%20Driver.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete an Operational Driver](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Delete%20an%20Operational%20Driver.request.yaml) | `DELETE {{base_url}}/{{namespace}}/drivers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::deleteDriver` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Delete%20an%20Operational%20Driver.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Get Driver Current Organization](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Get%20Driver%20Current%20Organization.request.yaml) | `GET {{base_url}}/{{namespace}}/drivers/:id/current-organization` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::getDriverCurrentOrganization` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Get%20Driver%20Current%20Organization.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / List Driver Manifests](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/List%20Driver%20Manifests.request.yaml) | `GET {{base_url}}/{{namespace}}/drivers/:id/manifests` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::listDriverManifests` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/List%20Driver%20Manifests.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / List Driver Organizations](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/List%20Driver%20Organizations.request.yaml) | `GET {{base_url}}/{{namespace}}/drivers/:id/organizations` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::listDriverOrganizations` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/List%20Driver%20Organizations.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Login Driver](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Login%20Driver.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/login` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::loginDriver` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Login%20Driver.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Drivers](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Query%20Drivers.request.yaml) | `GET {{base_url}}/{{namespace}}/drivers` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::queryDrivers` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Query%20Drivers.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/.resources/Query%20Drivers.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Register Device](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Register%20Device.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/register-device` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::registerDevice` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Register%20Device.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Register Driver Device](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Register%20Driver%20Device.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/:id/register-device` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::registerDriverDevice` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Register%20Driver%20Device.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Request Driver Login SMS](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Request%20Driver%20Login%20SMS.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/login-with-sms` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::requestDriverLoginSms` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Request%20Driver%20Login%20SMS.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Request Driver Password Reset](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Request%20Driver%20Password%20Reset.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/forgot-password` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::requestDriverPasswordReset` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Request%20Driver%20Password%20Reset.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Reset Driver Password](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Reset%20Driver%20Password.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/reset-password` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::resetDriverPassword` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Reset%20Driver%20Password.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Driver](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Retrieve%20a%20Driver.request.yaml) | `GET {{base_url}}/{{namespace}}/drivers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::retrieveDriver` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Retrieve%20a%20Driver.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/.resources/Retrieve%20a%20Driver.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Simulate Driver Route](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Simulate%20Driver%20Route.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/:id/simulate` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::simulateDriverRoute` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Simulate%20Driver%20Route.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Switch Driver Organization](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Switch%20Driver%20Organization.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/:id/switch-organization` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::switchDriverOrganization` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Switch%20Driver%20Organization.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Toggle Driver Online](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Toggle%20Driver%20Online.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/:id/toggle-online` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::toggleDriverOnline` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Toggle%20Driver%20Online.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Track Driver](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Track%20Driver.request.yaml) | `PATCH {{base_url}}/{{namespace}}/drivers/:id/track` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::trackDriver` | path, text body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Track%20Driver.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Driver](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Update%20a%20Driver.request.yaml) | `PUT {{base_url}}/{{namespace}}/drivers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::updateDriver` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Update%20a%20Driver.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/.resources/Update%20a%20Driver.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Driver Unchanged Contact](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Update%20a%20Driver%20Unchanged%20Contact.request.yaml) | `PUT {{base_url}}/{{namespace}}/drivers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::updateDriver` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Update%20a%20Driver%20Unchanged%20Contact.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Verify Driver Login Code](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Verify%20Driver%20Login%20Code.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/verify-code` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::verifyDriverLoginCode` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Drivers/Verify%20Driver%20Login%20Code.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create an Entity](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Entities/Create%20an%20Entity.request.yaml) | `POST {{base_url}}/{{namespace}}/entities` | fleetbase-api-key | `Fleetbase\Sdk\Services\EntityService::createEntity` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Entities/Create%20an%20Entity.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Entities/.resources/Create%20an%20Entity.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Entity](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Entities/Delete%20a%20Entity.request.yaml) | `DELETE {{base_url}}/{{namespace}}/entities/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\EntityService::deleteEntity` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Entities/Delete%20a%20Entity.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Entities/.resources/Delete%20a%20Entity.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Entities](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Entities/Query%20Entities.request.yaml) | `GET {{base_url}}/{{namespace}}/entities` | fleetbase-api-key | `Fleetbase\Sdk\Services\EntityService::queryEntities` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Entities/Query%20Entities.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve an Entity](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Entities/Retrieve%20an%20Entity.request.yaml) | `GET {{base_url}}/{{namespace}}/entities/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\EntityService::retrieveEntity` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Entities/Retrieve%20an%20Entity.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Entities/.resources/Retrieve%20an%20Entity.resources/examples/OK.example.yaml), [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Entities/.resources/Retrieve%20an%20Entity.resources/examples/Retrieve%20an%20Entity.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Entity](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Entities/Update%20a%20Entity.request.yaml) | `PUT {{base_url}}/{{namespace}}/entities/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\EntityService::updateEntity` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Entities/Update%20a%20Entity.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Entities/.resources/Update%20a%20Entity.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Attach Equipment](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Equipment/Attach%20Equipment.request.yaml) | `POST {{base_url}}/{{namespace}}/equipment/:id/attach` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::attachEquipment` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Equipment/Attach%20Equipment.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create Equipment](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Equipment/Create%20Equipment.request.yaml) | `POST {{base_url}}/{{namespace}}/equipment` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::createEquipment` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Equipment/Create%20Equipment.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Equipment/.resources/Create%20Equipment.resources/examples/Created.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete Equipment](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Equipment/Delete%20Equipment.request.yaml) | `DELETE {{base_url}}/{{namespace}}/equipment/{{equipment_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::deleteEquipment` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Equipment/Delete%20Equipment.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Equipment/.resources/Delete%20Equipment.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Detach Equipment](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Equipment/Detach%20Equipment.request.yaml) | `POST {{base_url}}/{{namespace}}/equipment/:id/detach` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::detachEquipment` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Equipment/Detach%20Equipment.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Equipment](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Equipment/Query%20Equipment.request.yaml) | `GET {{base_url}}/{{namespace}}/equipment` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::queryEquipment` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Equipment/Query%20Equipment.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Equipment/.resources/Query%20Equipment.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve Equipment](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Equipment/Retrieve%20Equipment.request.yaml) | `GET {{base_url}}/{{namespace}}/equipment/{{equipment_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::retrieveEquipment` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Equipment/Retrieve%20Equipment.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Equipment/.resources/Retrieve%20Equipment.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update Equipment](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Equipment/Update%20Equipment.request.yaml) | `PUT {{base_url}}/{{namespace}}/equipment/{{equipment_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::updateEquipment` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Equipment/Update%20Equipment.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Equipment/.resources/Update%20Equipment.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Assign a Driver to a Fleet](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Assign%20a%20Driver%20to%20a%20Fleet.request.yaml) | `POST {{base_url}}/{{namespace}}/fleets/:id/drivers/:driver` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::assignDriverToFleet` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Assign%20a%20Driver%20to%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/.resources/Assign%20a%20Driver%20to%20a%20Fleet.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Assign a Vehicle to a Fleet](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Assign%20a%20Vehicle%20to%20a%20Fleet.request.yaml) | `POST {{base_url}}/{{namespace}}/fleets/:id/vehicles/:vehicle` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::assignVehicleToFleet` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Assign%20a%20Vehicle%20to%20a%20Fleet.request.yaml)) | [404](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/.resources/Assign%20a%20Vehicle%20to%20a%20Fleet.resources/examples/Not%20Found.example.yaml), [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/.resources/Assign%20a%20Vehicle%20to%20a%20Fleet.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Fleet](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Create%20a%20Fleet.request.yaml) | `POST {{base_url}}/{{namespace}}/fleets` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::createFleet` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Create%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/.resources/Create%20a%20Fleet.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Fleet Driver](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Create%20a%20Fleet%20Driver.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::createDriver` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Create%20a%20Fleet%20Driver.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Fleet Vehicle](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Create%20a%20Fleet%20Vehicle.request.yaml) | `POST {{base_url}}/{{namespace}}/vehicles` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::createVehicle` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Create%20a%20Fleet%20Vehicle.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Subfleet](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Create%20a%20Subfleet.request.yaml) | `POST {{base_url}}/{{namespace}}/fleets` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::createFleet` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Create%20a%20Subfleet.request.yaml)) | [404](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/.resources/Create%20a%20Subfleet.resources/examples/Not%20Found.example.yaml), [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/.resources/Create%20a%20Subfleet.resources/examples/OK.example.yaml), [422](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/.resources/Create%20a%20Subfleet.resources/examples/Unprocessable%20Entity.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Fleet](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Delete%20a%20Fleet.request.yaml) | `DELETE {{base_url}}/{{namespace}}/fleets/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::deleteFleet` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Delete%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/.resources/Delete%20a%20Fleet.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Fleet Driver](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Delete%20a%20Fleet%20Driver.request.yaml) | `DELETE {{base_url}}/{{namespace}}/drivers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::deleteDriver` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Delete%20a%20Fleet%20Driver.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Fleet Vehicle](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Delete%20a%20Fleet%20Vehicle.request.yaml) | `DELETE {{base_url}}/{{namespace}}/vehicles/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::deleteVehicle` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Delete%20a%20Fleet%20Vehicle.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Subfleet](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Delete%20a%20Subfleet.request.yaml) | `DELETE {{base_url}}/{{namespace}}/fleets/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::deleteFleet` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Delete%20a%20Subfleet.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Fleets](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Query%20Fleets.request.yaml) | `GET {{base_url}}/{{namespace}}/fleets` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::queryFleets` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Query%20Fleets.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/.resources/Query%20Fleets.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Reassign a Driver to a Fleet](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Reassign%20a%20Driver%20to%20a%20Fleet.request.yaml) | `POST {{base_url}}/{{namespace}}/fleets/:id/drivers/:driver` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::assignDriverToFleet` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Reassign%20a%20Driver%20to%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/.resources/Reassign%20a%20Driver%20to%20a%20Fleet.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Reassign a Vehicle to a Fleet](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Reassign%20a%20Vehicle%20to%20a%20Fleet.request.yaml) | `POST {{base_url}}/{{namespace}}/fleets/:id/vehicles/:vehicle` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::assignVehicleToFleet` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Reassign%20a%20Vehicle%20to%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/.resources/Reassign%20a%20Vehicle%20to%20a%20Fleet.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Remove a Driver from a Fleet](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Remove%20a%20Driver%20from%20a%20Fleet.request.yaml) | `DELETE {{base_url}}/{{namespace}}/fleets/:id/drivers/:driver` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::removeDriverFromFleet` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Remove%20a%20Driver%20from%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/.resources/Remove%20a%20Driver%20from%20a%20Fleet.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Remove a Driver from a Fleet Again](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Remove%20a%20Driver%20from%20a%20Fleet%20Again.request.yaml) | `DELETE {{base_url}}/{{namespace}}/fleets/:id/drivers/:driver` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::removeDriverFromFleet` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Remove%20a%20Driver%20from%20a%20Fleet%20Again.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/.resources/Remove%20a%20Driver%20from%20a%20Fleet%20Again.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Remove a Vehicle from a Fleet](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Remove%20a%20Vehicle%20from%20a%20Fleet.request.yaml) | `DELETE {{base_url}}/{{namespace}}/fleets/:id/vehicles/:vehicle` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::removeVehicleFromFleet` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Remove%20a%20Vehicle%20from%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/.resources/Remove%20a%20Vehicle%20from%20a%20Fleet.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Remove a Vehicle from a Fleet Again](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Remove%20a%20Vehicle%20from%20a%20Fleet%20Again.request.yaml) | `DELETE {{base_url}}/{{namespace}}/fleets/:id/vehicles/:vehicle` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::removeVehicleFromFleet` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Remove%20a%20Vehicle%20from%20a%20Fleet%20Again.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/.resources/Remove%20a%20Vehicle%20from%20a%20Fleet%20Again.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Fleet](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Retrieve%20a%20Fleet.request.yaml) | `GET {{base_url}}/{{namespace}}/fleets/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::retrieveFleet` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Retrieve%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/.resources/Retrieve%20a%20Fleet.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Fleet](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Update%20a%20Fleet.request.yaml) | `PUT {{base_url}}/{{namespace}}/fleets/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::updateFleet` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/Update%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fleets/.resources/Update%20a%20Fleet.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Fuel Report](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Reports/Create%20a%20Fuel%20Report.request.yaml) | `POST {{base_url}}/{{namespace}}/fuel-reports` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelReportService::createFuelReport` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Reports/Create%20a%20Fuel%20Report.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Fuel Report](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Reports/Delete%20a%20Fuel%20Report.request.yaml) | `DELETE {{base_url}}/{{namespace}}/fuel-reports/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelReportService::deleteFuelReport` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Reports/Delete%20a%20Fuel%20Report.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Fuel Reports](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Reports/Query%20Fuel%20Reports.request.yaml) | `GET {{base_url}}/{{namespace}}/fuel-reports` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelReportService::queryFuelReports` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Reports/Query%20Fuel%20Reports.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Fuel Report](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Reports/Retrieve%20a%20Fuel%20Report.request.yaml) | `GET {{base_url}}/{{namespace}}/fuel-reports/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelReportService::retrieveFuelReport` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Reports/Retrieve%20a%20Fuel%20Report.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Fuel Report](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Reports/Update%20a%20Fuel%20Report.request.yaml) | `PUT {{base_url}}/{{namespace}}/fuel-reports/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelReportService::updateFuelReport` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Reports/Update%20a%20Fuel%20Report.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Fuel Transaction](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/Create%20a%20Fuel%20Transaction.request.yaml) | `POST {{base_url}}/{{namespace}}/fuel-transactions` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelTransactionService::createFuelTransaction` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/Create%20a%20Fuel%20Transaction.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/.resources/Create%20a%20Fuel%20Transaction.resources/examples/Created.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Fuel Transaction](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/Delete%20a%20Fuel%20Transaction.request.yaml) | `DELETE {{base_url}}/{{namespace}}/fuel-transactions/{{fuel_transaction_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelTransactionService::deleteFuelTransaction` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/Delete%20a%20Fuel%20Transaction.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/.resources/Delete%20a%20Fuel%20Transaction.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Match Fuel Transaction Order](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/Match%20Fuel%20Transaction%20Order.request.yaml) | `POST {{base_url}}/{{namespace}}/fuel-transactions/{{fuel_transaction_id}}/match-order` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelTransactionService::matchFuelTransactionOrder` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/Match%20Fuel%20Transaction%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/.resources/Match%20Fuel%20Transaction%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Match Fuel Transaction Vehicle](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/Match%20Fuel%20Transaction%20Vehicle.request.yaml) | `POST {{base_url}}/{{namespace}}/fuel-transactions/{{fuel_transaction_id}}/match-vehicle` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelTransactionService::matchFuelTransactionVehicle` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/Match%20Fuel%20Transaction%20Vehicle.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/.resources/Match%20Fuel%20Transaction%20Vehicle.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Fuel Transactions](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/Query%20Fuel%20Transactions.request.yaml) | `GET {{base_url}}/{{namespace}}/fuel-transactions` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelTransactionService::queryFuelTransactions` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/Query%20Fuel%20Transactions.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/.resources/Query%20Fuel%20Transactions.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Reprocess Fuel Transaction](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/Reprocess%20Fuel%20Transaction.request.yaml) | `POST {{base_url}}/{{namespace}}/fuel-transactions/{{fuel_transaction_id}}/reprocess` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelTransactionService::reprocessFuelTransaction` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/Reprocess%20Fuel%20Transaction.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/.resources/Reprocess%20Fuel%20Transaction.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Fuel Transaction](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/Retrieve%20a%20Fuel%20Transaction.request.yaml) | `GET {{base_url}}/{{namespace}}/fuel-transactions/{{fuel_transaction_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelTransactionService::retrieveFuelTransaction` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/Retrieve%20a%20Fuel%20Transaction.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/.resources/Retrieve%20a%20Fuel%20Transaction.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Review Fuel Transaction](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/Review%20Fuel%20Transaction.request.yaml) | `POST {{base_url}}/{{namespace}}/fuel-transactions/{{fuel_transaction_id}}/review` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelTransactionService::reviewFuelTransaction` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/Review%20Fuel%20Transaction.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/.resources/Review%20Fuel%20Transaction.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Fuel Transaction](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/Update%20a%20Fuel%20Transaction.request.yaml) | `PUT {{base_url}}/{{namespace}}/fuel-transactions/{{fuel_transaction_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelTransactionService::updateFuelTransaction` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/Update%20a%20Fuel%20Transaction.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Fuel%20Transactions/.resources/Update%20a%20Fuel%20Transaction.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Get Driver Geofence History](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Geofences/Get%20Driver%20Geofence%20History.request.yaml) | `GET {{base_url}}/{{namespace}}/geofences/driver/:driverId/history` | fleetbase-api-key | `Fleetbase\Sdk\Services\GeofenceService::getDriverGeofenceHistory` | path, query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Geofences/Get%20Driver%20Geofence%20History.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Get Geofence Dwell Report](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Geofences/Get%20Geofence%20Dwell%20Report.request.yaml) | `GET {{base_url}}/{{namespace}}/geofences/dwell-report` | fleetbase-api-key | `Fleetbase\Sdk\Services\GeofenceService::getGeofenceDwellReport` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Geofences/Get%20Geofence%20Dwell%20Report.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Get Geofence Inventory](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Geofences/Get%20Geofence%20Inventory.request.yaml) | `GET {{base_url}}/{{namespace}}/geofences/inventory` | fleetbase-api-key | `Fleetbase\Sdk\Services\GeofenceService::getGeofenceInventory` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Geofences/Get%20Geofence%20Inventory.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / List Geofence Events](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Geofences/List%20Geofence%20Events.request.yaml) | `GET {{base_url}}/{{namespace}}/geofences/events` | fleetbase-api-key | `Fleetbase\Sdk\Services\GeofenceService::listGeofenceEvents` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Geofences/List%20Geofence%20Events.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / List Inspection Forms](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Inspections/List%20Inspection%20Forms.request.yaml) | `GET {{base_url}}/{{namespace}}/inspection-forms` | fleetbase-api-key | `Fleetbase\Sdk\Services\InspectionFormService::listInspectionForms` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Inspections/List%20Inspection%20Forms.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / List Inspections](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Inspections/List%20Inspections.request.yaml) | `GET {{base_url}}/{{namespace}}/inspections` | fleetbase-api-key | `Fleetbase\Sdk\Services\InspectionService::listInspections` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Inspections/List%20Inspections.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / List Vehicle Inspections](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Inspections/List%20Vehicle%20Inspections.request.yaml) | `GET {{base_url}}/{{namespace}}/vehicles/:id/inspections` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::listVehicleInspections` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Inspections/List%20Vehicle%20Inspections.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve an Inspection](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Inspections/Retrieve%20an%20Inspection.request.yaml) | `GET {{base_url}}/{{namespace}}/inspections/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\InspectionService::retrieveInspection` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Inspections/Retrieve%20an%20Inspection.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve an Inspection Form](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Inspections/Retrieve%20an%20Inspection%20Form.request.yaml) | `GET {{base_url}}/{{namespace}}/inspection-forms/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\InspectionFormService::retrieveInspectionForm` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Inspections/Retrieve%20an%20Inspection%20Form.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Submit an Inspection](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Inspections/Submit%20an%20Inspection.request.yaml) | `POST {{base_url}}/{{namespace}}/inspections` | fleetbase-api-key | `Fleetbase\Sdk\Services\InspectionService::submitInspection` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Inspections/Submit%20an%20Inspection.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create an Issue](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Issues/Create%20an%20Issue.request.yaml) | `POST {{base_url}}/{{namespace}}/issues` | fleetbase-api-key | `Fleetbase\Sdk\Services\IssueService::createIssue` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Issues/Create%20an%20Issue.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete an Issue](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Issues/Delete%20an%20Issue.request.yaml) | `DELETE {{base_url}}/{{namespace}}/issues/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\IssueService::deleteIssue` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Issues/Delete%20an%20Issue.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Issues](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Issues/Query%20Issues.request.yaml) | `GET {{base_url}}/{{namespace}}/issues` | fleetbase-api-key | `Fleetbase\Sdk\Services\IssueService::queryIssues` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Issues/Query%20Issues.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve an Issue](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Issues/Retrieve%20an%20Issue.request.yaml) | `GET {{base_url}}/{{namespace}}/issues/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\IssueService::retrieveIssue` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Issues/Retrieve%20an%20Issue.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update an Issue](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Issues/Update%20an%20Issue.request.yaml) | `PUT {{base_url}}/{{namespace}}/issues/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\IssueService::updateIssue` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Issues/Update%20an%20Issue.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Render Label](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Labels/Render%20Label.request.yaml) | `GET {{base_url}}/{{namespace}}/labels/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\LabelService::renderLabel` | path, query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Labels/Render%20Label.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Optimize a Manifest](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Manifests/Optimize%20a%20Manifest.request.yaml) | `POST {{base_url}}/{{namespace}}/manifests/:id/optimize` | fleetbase-api-key | `Fleetbase\Sdk\Services\ManifestService::optimizeManifest` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Manifests/Optimize%20a%20Manifest.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Manifest](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Manifests/Retrieve%20a%20Manifest.request.yaml) | `GET {{base_url}}/{{namespace}}/manifests/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ManifestService::retrieveManifest` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Manifests/Retrieve%20a%20Manifest.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Manifest Stop](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Manifests/Update%20a%20Manifest%20Stop.request.yaml) | `PATCH {{base_url}}/{{namespace}}/manifest-stops/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ManifestService::updateManifestStop` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Manifests/Update%20a%20Manifest%20Stop.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Get Driver Onboard Settings](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Onboard/Get%20Driver%20Onboard%20Settings.request.yaml) | `GET {{base_url}}/{{namespace}}/onboard/driver-onboard-settings/:companyId` | fleetbase-api-key | `Fleetbase\Sdk\Services\OnboardService::getDriverOnboardSettings` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Onboard/Get%20Driver%20Onboard%20Settings.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Commit Orchestrator Plan](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orchestrator/Commit%20Orchestrator%20Plan.request.yaml) | `POST {{base_url}}/{{namespace}}/orchestrator/commit` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrchestratorService::commitOrchestratorPlan` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orchestrator/Commit%20Orchestrator%20Plan.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orchestrator/.resources/Commit%20Orchestrator%20Plan.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Run Orchestrator](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orchestrator/Run%20Orchestrator.request.yaml) | `POST {{base_url}}/{{namespace}}/orchestrator/run` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrchestratorService::runOrchestrator` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orchestrator/Run%20Orchestrator.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orchestrator/.resources/Run%20Orchestrator.resources/examples/Multi-phase%20Prior%20Assignments.example.yaml), [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orchestrator/.resources/Run%20Orchestrator.resources/examples/Native%20Capacity%20Allocation.example.yaml), [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orchestrator/.resources/Run%20Orchestrator.resources/examples/Single-phase%20VROOM%20Allocation.example.yaml), [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orchestrator/.resources/Run%20Orchestrator.resources/examples/VROOM%20Capacity%20Only%20Allocation.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Order Configs](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Order%20Configs/Query%20Order%20Configs.request.yaml) | `GET {{base_url}}/{{namespace}}/order-configs` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderConfigService::queryOrderConfigs` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Order%20Configs/Query%20Order%20Configs.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve an Order Config](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Order%20Configs/Retrieve%20an%20Order%20Config.request.yaml) | `GET {{base_url}}/{{namespace}}/order-configs/{{order_config_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderConfigService::retrieveOrderConfig` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Order%20Configs/Retrieve%20an%20Order%20Config.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Cancel an Order](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Cancel%20an%20Order.request.yaml) | `DELETE {{base_url}}/{{namespace}}/orders/:id/cancel` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::cancelOrder` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Cancel%20an%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/.resources/Cancel%20an%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Capture Photo for Order](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Capture%20Photo%20for%20Order.request.yaml) | `POST {{base_url}}/{{namespace}}/orders/:id/capture-photo/:subjectId` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::capturePhotoForOrder` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Capture%20Photo%20for%20Order.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Capture QR Code for Order](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Capture%20QR%20Code%20for%20Order.request.yaml) | `POST {{base_url}}/{{namespace}}/orders/:id/capture-qr/:subject-id` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::captureQrCodeForOrder` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Capture%20QR%20Code%20for%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/.resources/Capture%20QR%20Code%20for%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Capture Signature for Order](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Capture%20Signature%20for%20Order.request.yaml) | `POST {{base_url}}/{{namespace}}/orders/:id/capture-signature/:subject-id` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::captureSignatureForOrder` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Capture%20Signature%20for%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/.resources/Capture%20Signature%20for%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Complete an Order](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Complete%20an%20Order.request.yaml) | `POST {{base_url}}/{{namespace}}/orders/:id/complete` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::completeOrder` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Complete%20an%20Order.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create an Order](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order.request.yaml) | `POST {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::createOrder` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/.resources/Create%20an%20Order.resources/examples/Create%20an%20Order%20using%20Complete%20Payload.example.yaml), [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/.resources/Create%20an%20Order.resources/examples/Create%20an%20Order%20using%20Payload.example.yaml), [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/.resources/Create%20an%20Order.resources/examples/Create%20an%20Order%20using%20Waypoints%20and%20Entities%20with%20Photos.example.yaml), [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/.resources/Create%20an%20Order.resources/examples/Create%20an%20Order%20using%20Waypoints%20and%20Entity%20Destinations.example.yaml), [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/.resources/Create%20an%20Order.resources/examples/Create%20an%20Order%20using%20only%20Pickup%20Dropoff.example.yaml), [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/.resources/Create%20an%20Order.resources/examples/Create%20an%20Order%20using%20only%20Waypoints.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create an Order using Complete Payload](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20Complete%20Payload.request.yaml) | `POST {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::createOrderUsingCompletePayload` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20Complete%20Payload.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create an Order using Coordinates](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20Coordinates.request.yaml) | `POST {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::createOrderUsingCoordinates` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20Coordinates.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create an Order using GeoJSON Points](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20GeoJSON%20Points.request.yaml) | `POST {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::createOrderUsingGeojsonPoints` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20GeoJSON%20Points.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create an Order using Payload](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20Payload.request.yaml) | `POST {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::createOrderUsingPayload` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20Payload.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create an Order using Waypoints and Entities with Photos](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20Waypoints%20and%20Entities%20with%20Photos.request.yaml) | `POST {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::createOrderUsingWaypointsAndEntitiesWithPhotos` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20Waypoints%20and%20Entities%20with%20Photos.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create an Order using Waypoints and Entity Destinations](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20Waypoints%20and%20Entity%20Destinations.request.yaml) | `POST {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::createOrderUsingWaypointsAndEntityDestinations` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20Waypoints%20and%20Entity%20Destinations.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create an Order using only Pickup Dropoff](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20only%20Pickup%20Dropoff.request.yaml) | `POST {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::createOrderUsingOnlyPickupDropoff` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20only%20Pickup%20Dropoff.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create an Order using only Waypoints](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20only%20Waypoints.request.yaml) | `POST {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::createOrderUsingOnlyWaypoints` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20only%20Waypoints.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create an Order with Empty Relationships](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20with%20Empty%20Relationships.request.yaml) | `POST {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::createOrder` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20with%20Empty%20Relationships.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete an Order](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Delete%20an%20Order.request.yaml) | `DELETE {{base_url}}/{{namespace}}/orders/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::deleteOrder` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Delete%20an%20Order.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Dispatch an Order](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Dispatch%20an%20Order.request.yaml) | `PATCH {{base_url}}/{{namespace}}/orders/:id/dispatch` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::dispatchOrder` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Dispatch%20an%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/.resources/Dispatch%20an%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Get Editable Entity Fields](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Get%20Editable%20Entity%20Fields.request.yaml) | `GET {{base_url}}/{{namespace}}/orders/:id/editable-entity-fields` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::getEditableEntityFields` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Get%20Editable%20Entity%20Fields.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Get Order Distance and Time](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Get%20Order%20Distance%20and%20Time.request.yaml) | `GET {{base_url}}/{{namespace}}/orders/:id/distance-and-time` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::getOrderDistanceAndTime` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Get%20Order%20Distance%20and%20Time.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Get Order ETA](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Get%20Order%20ETA.request.yaml) | `GET {{base_url}}/{{namespace}}/orders/:id/eta` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::getOrderEta` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Get%20Order%20ETA.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Get Order Next Activity](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Get%20Order%20Next%20Activity.request.yaml) | `GET {{base_url}}/{{namespace}}/orders/:id/next-activity` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::getOrderNextActivity` | path, query, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Get%20Order%20Next%20Activity.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/.resources/Get%20Order%20Next%20Activity.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Get Order Tracker](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Get%20Order%20Tracker.request.yaml) | `GET {{base_url}}/{{namespace}}/orders/:id/tracker` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::getOrderTracker` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Get%20Order%20Tracker.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / List Order Comments](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/List%20Order%20Comments.request.yaml) | `GET {{base_url}}/{{namespace}}/orders/:id/comments` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::listOrderComments` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/List%20Order%20Comments.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / List Order Proofs](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/List%20Order%20Proofs.request.yaml) | `GET {{base_url}}/{{namespace}}/orders/:id/proofs/:subjectId` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::listOrderProofs` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/List%20Order%20Proofs.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Orders](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Query%20Orders.request.yaml) | `GET {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::queryOrders` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Query%20Orders.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve an Order](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Retrieve%20an%20Order.request.yaml) | `GET {{base_url}}/{{namespace}}/orders/{{order_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::retrieveOrder` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Retrieve%20an%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/.resources/Retrieve%20an%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Schedule an Order](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Schedule%20an%20Order.request.yaml) | `PATCH {{base_url}}/{{namespace}}/orders/:id/schedule` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::scheduleOrder` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Schedule%20an%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/.resources/Schedule%20an%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Set Order Destination](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Set%20Order%20Destination.request.yaml) | `PATCH {{base_url}}/{{namespace}}/orders/:id/set-destination/:placeId` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::setOrderDestination` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Set%20Order%20Destination.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/.resources/Set%20Order%20Destination.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Start an Order](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Start%20an%20Order.request.yaml) | `POST {{base_url}}/{{namespace}}/orders/:id/start` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::startOrder` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Start%20an%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/.resources/Start%20an%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update Order Activity](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Update%20Order%20Activity.request.yaml) | `POST {{base_url}}/{{namespace}}/orders/:id/update-activity` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::updateOrderActivity` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Update%20Order%20Activity.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/.resources/Update%20Order%20Activity.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update an Order](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Update%20an%20Order.request.yaml) | `PUT {{base_url}}/{{namespace}}/orders/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::updateOrder` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/Update%20an%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Orders/.resources/Update%20an%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Get Current Organization](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Organizations/Get%20Current%20Organization.request.yaml) | `GET {{base_url}}/{{namespace}}/organizations/current` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrganizationService::getCurrentOrganization` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Organizations/Get%20Current%20Organization.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / List Organizations](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Organizations/List%20Organizations.request.yaml) | `GET {{base_url}}/{{namespace}}/organizations` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrganizationService::listOrganizations` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Organizations/List%20Organizations.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Part](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Parts/Create%20a%20Part.request.yaml) | `POST {{base_url}}/{{namespace}}/parts` | fleetbase-api-key | `Fleetbase\Sdk\Services\PartService::createPart` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Parts/Create%20a%20Part.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Parts/.resources/Create%20a%20Part.resources/examples/Created.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Part](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Parts/Delete%20a%20Part.request.yaml) | `DELETE {{base_url}}/{{namespace}}/parts/{{part_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\PartService::deletePart` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Parts/Delete%20a%20Part.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Parts/.resources/Delete%20a%20Part.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Parts](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Parts/Query%20Parts.request.yaml) | `GET {{base_url}}/{{namespace}}/parts` | fleetbase-api-key | `Fleetbase\Sdk\Services\PartService::queryParts` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Parts/Query%20Parts.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Parts/.resources/Query%20Parts.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Part](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Parts/Retrieve%20a%20Part.request.yaml) | `GET {{base_url}}/{{namespace}}/parts/{{part_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\PartService::retrievePart` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Parts/Retrieve%20a%20Part.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Parts/.resources/Retrieve%20a%20Part.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Part](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Parts/Update%20a%20Part.request.yaml) | `PUT {{base_url}}/{{namespace}}/parts/{{part_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\PartService::updatePart` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Parts/Update%20a%20Part.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Parts/.resources/Update%20a%20Part.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Payload](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Payloads/Create%20a%20Payload.request.yaml) | `POST {{base_url}}/{{namespace}}/payloads` | fleetbase-api-key | `Fleetbase\Sdk\Services\PayloadService::createPayload` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Payloads/Create%20a%20Payload.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Payloads/.resources/Create%20a%20Payload.resources/examples/Create%20a%20Payload%20With%20Multiple%20Waypoints.example.yaml), [201](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Payloads/.resources/Create%20a%20Payload.resources/examples/Create%20a%20Payload.example.yaml), [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Payloads/.resources/Create%20a%20Payload.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Payload](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Payloads/Delete%20a%20Payload.request.yaml) | `DELETE {{base_url}}/{{namespace}}/payloads/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\PayloadService::deletePayload` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Payloads/Delete%20a%20Payload.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Payloads/.resources/Delete%20a%20Payload.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Payloads](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Payloads/Query%20Payloads.request.yaml) | `GET {{base_url}}/{{namespace}}/payloads` | fleetbase-api-key | `Fleetbase\Sdk\Services\PayloadService::queryPayloads` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Payloads/Query%20Payloads.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Payload](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Payloads/Retrieve%20a%20Payload.request.yaml) | `GET {{base_url}}/{{namespace}}/payloads/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\PayloadService::retrievePayload` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Payloads/Retrieve%20a%20Payload.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Payload](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Payloads/Update%20a%20Payload.request.yaml) | `PUT {{base_url}}/{{namespace}}/payloads/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\PayloadService::updatePayload` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Payloads/Update%20a%20Payload.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Payloads/.resources/Update%20a%20Payload.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Place](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Places/Create%20a%20Place.request.yaml) | `POST {{base_url}}/{{namespace}}/places` | fleetbase-api-key | `Fleetbase\Sdk\Services\PlaceService::createPlace` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Places/Create%20a%20Place.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Places/.resources/Create%20a%20Place.resources/examples/Create%20a%20Place%20using%20Coordinates%20Array.example.yaml), [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Places/.resources/Create%20a%20Place.resources/examples/Create%20a%20Place%20using%20Coordinates.example.yaml), [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Places/.resources/Create%20a%20Place.resources/examples/Create%20a%20Place%20using%20GeoJSON%20Point.example.yaml), [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Places/.resources/Create%20a%20Place.resources/examples/Create%20a%20Place%20using%20Street%20Address%20Only.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Place](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Places/Delete%20a%20Place.request.yaml) | `DELETE {{base_url}}/{{namespace}}/places/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\PlaceService::deletePlace` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Places/Delete%20a%20Place.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Places/.resources/Delete%20a%20Place.resources/examples/Delete%20a%20Place.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / List all Places](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Places/List%20all%20Places.request.yaml) | `GET {{base_url}}/{{namespace}}/places` | fleetbase-api-key | `Fleetbase\Sdk\Services\PlaceService::listAllPlaces` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Places/List%20all%20Places.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Places](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Places/Query%20Places.request.yaml) | `GET {{base_url}}/{{namespace}}/places` | fleetbase-api-key | `Fleetbase\Sdk\Services\PlaceService::queryPlaces` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Places/Query%20Places.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Place](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Places/Retrieve%20a%20Place.request.yaml) | `GET {{base_url}}/{{namespace}}/places/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\PlaceService::retrievePlace` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Places/Retrieve%20a%20Place.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Search Places](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Places/Search%20Places.request.yaml) | `GET {{base_url}}/{{namespace}}/places/search` | fleetbase-api-key | `Fleetbase\Sdk\Services\PlaceService::searchPlaces` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Places/Search%20Places.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Place](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Places/Update%20a%20Place.request.yaml) | `PUT {{base_url}}/{{namespace}}/places/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\PlaceService::updatePlace` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Places/Update%20a%20Place.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Places/.resources/Update%20a%20Place.resources/examples/Update%20a%20Place.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Purchase Rate](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Purchase%20Rates/Create%20a%20Purchase%20Rate.request.yaml) | `POST {{base_url}}/{{namespace}}/purchase-rates` | fleetbase-api-key | `Fleetbase\Sdk\Services\PurchaseRateService::createPurchaseRate` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Purchase%20Rates/Create%20a%20Purchase%20Rate.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Purchase%20Rates/.resources/Create%20a%20Purchase%20Rate.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Purchase Rates](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Purchase%20Rates/Query%20Purchase%20Rates.request.yaml) | `GET {{base_url}}/{{namespace}}/purchase-rates` | fleetbase-api-key | `Fleetbase\Sdk\Services\PurchaseRateService::queryPurchaseRates` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Purchase%20Rates/Query%20Purchase%20Rates.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Purchase Rate](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Purchase%20Rates/Retrieve%20a%20Purchase%20Rate.request.yaml) | `GET {{base_url}}/{{namespace}}/purchase-rates/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\PurchaseRateService::retrievePurchaseRate` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Purchase%20Rates/Retrieve%20a%20Purchase%20Rate.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Purchase%20Rates/.resources/Retrieve%20a%20Purchase%20Rate.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Sensor](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Sensors/Create%20a%20Sensor.request.yaml) | `POST {{base_url}}/{{namespace}}/sensors` | fleetbase-api-key | `Fleetbase\Sdk\Services\SensorService::createSensor` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Sensors/Create%20a%20Sensor.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Sensors/.resources/Create%20a%20Sensor.resources/examples/Created.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Sensor](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Sensors/Delete%20a%20Sensor.request.yaml) | `DELETE {{base_url}}/{{namespace}}/sensors/{{sensor_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\SensorService::deleteSensor` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Sensors/Delete%20a%20Sensor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Sensors/.resources/Delete%20a%20Sensor.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Sensors](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Sensors/Query%20Sensors.request.yaml) | `GET {{base_url}}/{{namespace}}/sensors` | fleetbase-api-key | `Fleetbase\Sdk\Services\SensorService::querySensors` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Sensors/Query%20Sensors.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Sensors/.resources/Query%20Sensors.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Sensor](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Sensors/Retrieve%20a%20Sensor.request.yaml) | `GET {{base_url}}/{{namespace}}/sensors/{{sensor_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\SensorService::retrieveSensor` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Sensors/Retrieve%20a%20Sensor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Sensors/.resources/Retrieve%20a%20Sensor.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Sensor](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Sensors/Update%20a%20Sensor.request.yaml) | `PUT {{base_url}}/{{namespace}}/sensors/{{sensor_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\SensorService::updateSensor` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Sensors/Update%20a%20Sensor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Sensors/.resources/Update%20a%20Sensor.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Service Area](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Areas/Create%20a%20Service%20Area.request.yaml) | `POST {{base_url}}/{{namespace}}/service-areas` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceAreaService::createServiceArea` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Areas/Create%20a%20Service%20Area.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Areas/.resources/Create%20a%20Service%20Area.resources/examples/Create%20a%20Service%20Area%20using%20GeoJSON%20Point.example.yaml), [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Areas/.resources/Create%20a%20Service%20Area.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Service Area](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Areas/Delete%20a%20Service%20Area.request.yaml) | `DELETE {{base_url}}/{{namespace}}/service-areas/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceAreaService::deleteServiceArea` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Areas/Delete%20a%20Service%20Area.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Areas/.resources/Delete%20a%20Service%20Area.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Service Areas](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Areas/Query%20Service%20Areas.request.yaml) | `GET {{base_url}}/{{namespace}}/service-areas` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceAreaService::queryServiceAreas` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Areas/Query%20Service%20Areas.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Service Area](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Areas/Retrieve%20a%20Service%20Area.request.yaml) | `GET {{base_url}}/{{namespace}}/service-areas/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceAreaService::retrieveServiceArea` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Areas/Retrieve%20a%20Service%20Area.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Areas/.resources/Retrieve%20a%20Service%20Area.resources/examples/OK.example.yaml), [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Areas/.resources/Retrieve%20a%20Service%20Area.resources/examples/Retrieve%20a%20Service%20Area.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Service Area](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Areas/Update%20a%20Service%20Area.request.yaml) | `PUT {{base_url}}/{{namespace}}/service-areas/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceAreaService::updateServiceArea` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Areas/Update%20a%20Service%20Area.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Areas/.resources/Update%20a%20Service%20Area.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Service Quotes](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Quotes/Query%20Service%20Quotes.request.yaml) | `GET {{base_url}}/{{namespace}}/service-quotes` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceQuoteService::queryServiceQuotes` | query, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Quotes/Query%20Service%20Quotes.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Quotes/.resources/Query%20Service%20Quotes.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Service Quote](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Quotes/Retrieve%20a%20Service%20Quote.request.yaml) | `GET {{base_url}}/{{namespace}}/service-quotes/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceQuoteService::retrieveServiceQuote` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Quotes/Retrieve%20a%20Service%20Quote.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Service Rate](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Rates/Create%20a%20Service%20Rate.request.yaml) | `POST {{base_url}}/{{namespace}}/service-rates` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceRateService::createServiceRate` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Rates/Create%20a%20Service%20Rate.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Rates/.resources/Create%20a%20Service%20Rate.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Service Rate with an Empty Service Area](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Rates/Create%20a%20Service%20Rate%20with%20an%20Empty%20Service%20Area.request.yaml) | `POST {{base_url}}/{{namespace}}/service-rates` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceRateService::createServiceRate` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Rates/Create%20a%20Service%20Rate%20with%20an%20Empty%20Service%20Area.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Service Rate](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Rates/Delete%20a%20Service%20Rate.request.yaml) | `DELETE {{base_url}}/{{namespace}}/service-rates/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceRateService::deleteServiceRate` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Rates/Delete%20a%20Service%20Rate.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Rates/.resources/Delete%20a%20Service%20Rate.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Service Rates](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Rates/Query%20Service%20Rates.request.yaml) | `GET {{base_url}}/{{namespace}}/service-rates` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceRateService::queryServiceRates` | query, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Rates/Query%20Service%20Rates.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Service Rate](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Rates/Retrieve%20a%20Service%20Rate.request.yaml) | `GET {{base_url}}/{{namespace}}/service-rates/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceRateService::retrieveServiceRate` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Rates/Retrieve%20a%20Service%20Rate.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Service Rate](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Rates/Update%20a%20Service%20Rate.request.yaml) | `PUT {{base_url}}/{{namespace}}/service-rates/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceRateService::updateServiceRate` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Rates/Update%20a%20Service%20Rate.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Service%20Rates/.resources/Update%20a%20Service%20Rate.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Tracking Number](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Numbers/Create%20a%20Tracking%20Number.request.yaml) | `POST {{base_url}}/{{namespace}}/tracking-numbers` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrackingNumberService::createTrackingNumber` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Numbers/Create%20a%20Tracking%20Number.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Numbers/.resources/Create%20a%20Tracking%20Number.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Decode Tracking Number QR](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Numbers/Decode%20Tracking%20Number%20QR.request.yaml) | `POST {{base_url}}/{{namespace}}/tracking-numbers/from-qr` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrackingNumberService::decodeTrackingNumberQr` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Numbers/Decode%20Tracking%20Number%20QR.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Tracking Number](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Numbers/Delete%20a%20Tracking%20Number.request.yaml) | `DELETE {{base_url}}/{{namespace}}/tracking-numbers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrackingNumberService::deleteTrackingNumber` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Numbers/Delete%20a%20Tracking%20Number.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Numbers/.resources/Delete%20a%20Tracking%20Number.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Tracking Numbers](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Numbers/Query%20Tracking%20Numbers.request.yaml) | `GET {{base_url}}/{{namespace}}/tracking-numbers` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrackingNumberService::queryTrackingNumbers` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Numbers/Query%20Tracking%20Numbers.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Numbers/.resources/Query%20Tracking%20Numbers.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Tracking Number](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Numbers/Retrieve%20a%20Tracking%20Number.request.yaml) | `GET {{base_url}}/{{namespace}}/tracking-numbers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrackingNumberService::retrieveTrackingNumber` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Numbers/Retrieve%20a%20Tracking%20Number.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Numbers/.resources/Retrieve%20a%20Tracking%20Number.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Tracking Status](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Statuses/Create%20a%20Tracking%20Status.request.yaml) | `POST {{base_url}}/{{namespace}}/tracking-statuses` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrackingStatusService::createTrackingStatus` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Statuses/Create%20a%20Tracking%20Status.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Statuses/.resources/Create%20a%20Tracking%20Status.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Tracking Status](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Statuses/Delete%20a%20Tracking%20Status.request.yaml) | `DELETE {{base_url}}/{{namespace}}/tracking-statuses/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrackingStatusService::deleteTrackingStatus` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Statuses/Delete%20a%20Tracking%20Status.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Statuses/.resources/Delete%20a%20Tracking%20Status.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Tracking Statuses](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Statuses/Query%20Tracking%20Statuses.request.yaml) | `GET {{base_url}}/{{namespace}}/tracking-statuses` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrackingStatusService::queryTrackingStatuses` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Statuses/Query%20Tracking%20Statuses.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Statuses/.resources/Query%20Tracking%20Statuses.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Tracking Status](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Statuses/Retrieve%20a%20Tracking%20Status.request.yaml) | `GET {{base_url}}/{{namespace}}/tracking-statuses/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrackingStatusService::retrieveTrackingStatus` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Statuses/Retrieve%20a%20Tracking%20Status.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Statuses/.resources/Retrieve%20a%20Tracking%20Status.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Tracking Status](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Statuses/Update%20a%20Tracking%20Status.request.yaml) | `PUT {{base_url}}/{{namespace}}/tracking-statuses/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrackingStatusService::updateTrackingStatus` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Statuses/Update%20a%20Tracking%20Status.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Tracking%20Statuses/.resources/Update%20a%20Tracking%20Status.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Attach Device to Trailer](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Attach%20Device%20to%20Trailer.request.yaml) | `POST {{base_url}}/{{namespace}}/devices/:id/attach` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::attachDevice` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Attach%20Device%20to%20Trailer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Attach Equipment to Trailer](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Attach%20Equipment%20to%20Trailer.request.yaml) | `POST {{base_url}}/{{namespace}}/equipment/:id/attach` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::attachEquipment` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Attach%20Equipment%20to%20Trailer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Attach Trailer to Vehicle](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Attach%20Trailer%20to%20Vehicle.request.yaml) | `POST {{base_url}}/{{namespace}}/trailers/:id/attach` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::attachTrailerToVehicle` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Attach%20Trailer%20to%20Vehicle.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create Trailer Device](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Create%20Trailer%20Device.request.yaml) | `POST {{base_url}}/{{namespace}}/devices` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::createDevice` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Create%20Trailer%20Device.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create Trailer Equipment](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Create%20Trailer%20Equipment.request.yaml) | `POST {{base_url}}/{{namespace}}/equipment` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::createEquipment` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Create%20Trailer%20Equipment.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Trailer](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Create%20a%20Trailer.request.yaml) | `POST {{base_url}}/{{namespace}}/trailers` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::createTrailer` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Create%20a%20Trailer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete Trailer Device](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Delete%20Trailer%20Device.request.yaml) | `DELETE {{base_url}}/{{namespace}}/devices/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::deleteDevice` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Delete%20Trailer%20Device.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete Trailer Equipment](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Delete%20Trailer%20Equipment.request.yaml) | `DELETE {{base_url}}/{{namespace}}/equipment/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::deleteEquipment` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Delete%20Trailer%20Equipment.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Trailer](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Delete%20a%20Trailer.request.yaml) | `DELETE {{base_url}}/{{namespace}}/trailers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::deleteTrailer` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Delete%20a%20Trailer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Detach Trailer Attachments](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Detach%20Trailer%20Attachments.request.yaml) | `POST {{base_url}}/{{namespace}}/devices/:id/detach` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::detachDevice` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Detach%20Trailer%20Attachments.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Detach Trailer Equipment](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Detach%20Trailer%20Equipment.request.yaml) | `POST {{base_url}}/{{namespace}}/equipment/:id/detach` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::detachEquipment` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Detach%20Trailer%20Equipment.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Detach Trailer from Vehicle](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Detach%20Trailer%20from%20Vehicle.request.yaml) | `POST {{base_url}}/{{namespace}}/trailers/:id/detach` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::detachTrailerFromVehicle` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Detach%20Trailer%20from%20Vehicle.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / List Trailer Connections](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/List%20Trailer%20Connections.request.yaml) | `GET {{base_url}}/{{namespace}}/trailers/:id/connections` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::listTrailerConnections` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/List%20Trailer%20Connections.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / List Vehicle Trailers](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/List%20Vehicle%20Trailers.request.yaml) | `GET {{base_url}}/{{namespace}}/vehicles/:id/trailers` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::listVehicleTrailers` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/List%20Vehicle%20Trailers.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Trailers](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Query%20Trailers.request.yaml) | `GET {{base_url}}/{{namespace}}/trailers` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::queryTrailers` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Query%20Trailers.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Reattach Equipment to Vehicle](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Reattach%20Equipment%20to%20Vehicle.request.yaml) | `POST {{base_url}}/{{namespace}}/equipment/:id/attach` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::attachEquipment` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Reattach%20Equipment%20to%20Vehicle.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Trailer](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Retrieve%20a%20Trailer.request.yaml) | `GET {{base_url}}/{{namespace}}/trailers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::retrieveTrailer` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Retrieve%20a%20Trailer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Track Trailer](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Track%20Trailer.request.yaml) | `PATCH {{base_url}}/{{namespace}}/trailers/:id/track` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::trackTrailer` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Track%20Trailer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Trailer](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Update%20a%20Trailer.request.yaml) | `PUT {{base_url}}/{{namespace}}/trailers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::updateTrailer` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Update%20a%20Trailer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Verify Detached Connection History](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Verify%20Detached%20Connection%20History.request.yaml) | `GET {{base_url}}/{{namespace}}/trailers/:id/connections` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::listTrailerConnections` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Verify%20Detached%20Connection%20History.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Verify Trailer Equipment](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Verify%20Trailer%20Equipment.request.yaml) | `GET {{base_url}}/{{namespace}}/trailers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::retrieveTrailer` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Trailers/Verify%20Trailer%20Equipment.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Vehicle](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/Create%20a%20Vehicle.request.yaml) | `POST {{base_url}}/{{namespace}}/vehicles` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::createVehicle` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/Create%20a%20Vehicle.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/.resources/Create%20a%20Vehicle.resources/examples/Created.example.yaml), [404](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/.resources/Create%20a%20Vehicle.resources/examples/Not%20Found.example.yaml), [422](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/.resources/Create%20a%20Vehicle.resources/examples/Unprocessable%20Entity.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Vehicle](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/Delete%20a%20Vehicle.request.yaml) | `DELETE {{base_url}}/{{namespace}}/vehicles/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::deleteVehicle` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/Delete%20a%20Vehicle.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/.resources/Delete%20a%20Vehicle.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Expand a Vehicle](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/Expand%20a%20Vehicle.request.yaml) | `GET {{base_url}}/{{namespace}}/vehicles/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::retrieveVehicle` | path, query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/Expand%20a%20Vehicle.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/.resources/Expand%20a%20Vehicle.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Expand a Vehicle Scalar](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/Expand%20a%20Vehicle%20Scalar.request.yaml) | `GET {{base_url}}/{{namespace}}/vehicles/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::retrieveVehicle` | path, query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/Expand%20a%20Vehicle%20Scalar.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/.resources/Expand%20a%20Vehicle.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Vehicles](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/Query%20Vehicles.request.yaml) | `GET {{base_url}}/{{namespace}}/vehicles` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::queryVehicles` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/Query%20Vehicles.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/.resources/Query%20Vehicles.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Vehicle](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/Retrieve%20a%20Vehicle.request.yaml) | `GET {{base_url}}/{{namespace}}/vehicles/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::retrieveVehicle` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/Retrieve%20a%20Vehicle.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/.resources/Retrieve%20a%20Vehicle.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Track Vehicle](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/Track%20Vehicle.request.yaml) | `PATCH {{base_url}}/{{namespace}}/vehicles/:id/track` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::trackVehicle` | path, text body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/Track%20Vehicle.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Vehicle](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/Update%20a%20Vehicle.request.yaml) | `PUT {{base_url}}/{{namespace}}/vehicles/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::updateVehicle` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/Update%20a%20Vehicle.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vehicles/.resources/Update%20a%20Vehicle.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Vendor](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vendors/Create%20a%20Vendor.request.yaml) | `POST {{base_url}}/{{namespace}}/vendors` | fleetbase-api-key | `Fleetbase\Sdk\Services\VendorService::createVendor` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vendors/Create%20a%20Vendor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vendors/.resources/Create%20a%20Vendor.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Vendor](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vendors/Delete%20a%20Vendor.request.yaml) | `DELETE {{base_url}}/{{namespace}}/vendors/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\VendorService::deleteVendor` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vendors/Delete%20a%20Vendor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vendors/.resources/Delete%20a%20Vendor.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Vendors](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vendors/Query%20Vendors.request.yaml) | `GET {{base_url}}/{{namespace}}/vendors` | fleetbase-api-key | `Fleetbase\Sdk\Services\VendorService::queryVendors` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vendors/Query%20Vendors.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vendors/.resources/Query%20Vendors.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Vendor](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vendors/Retrieve%20a%20Vendor.request.yaml) | `GET {{base_url}}/{{namespace}}/vendors/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\VendorService::retrieveVendor` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vendors/Retrieve%20a%20Vendor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vendors/.resources/Retrieve%20a%20Vendor.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Vendor](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vendors/Update%20a%20Vendor.request.yaml) | `PUT {{base_url}}/{{namespace}}/vendors/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\VendorService::updateVendor` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vendors/Update%20a%20Vendor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Vendors/.resources/Update%20a%20Vendor.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Work Order](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Work%20Orders/Create%20a%20Work%20Order.request.yaml) | `POST {{base_url}}/{{namespace}}/work-orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\WorkOrderService::createWorkOrder` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Work%20Orders/Create%20a%20Work%20Order.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Work%20Orders/.resources/Create%20a%20Work%20Order.resources/examples/Created.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Work Order](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Work%20Orders/Delete%20a%20Work%20Order.request.yaml) | `DELETE {{base_url}}/{{namespace}}/work-orders/{{work_order_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\WorkOrderService::deleteWorkOrder` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Work%20Orders/Delete%20a%20Work%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Work%20Orders/.resources/Delete%20a%20Work%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Work Orders](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Work%20Orders/Query%20Work%20Orders.request.yaml) | `GET {{base_url}}/{{namespace}}/work-orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\WorkOrderService::queryWorkOrders` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Work%20Orders/Query%20Work%20Orders.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Work%20Orders/.resources/Query%20Work%20Orders.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a Work Order](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Work%20Orders/Retrieve%20a%20Work%20Order.request.yaml) | `GET {{base_url}}/{{namespace}}/work-orders/{{work_order_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\WorkOrderService::retrieveWorkOrder` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Work%20Orders/Retrieve%20a%20Work%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Work%20Orders/.resources/Retrieve%20a%20Work%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Send Work Order](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Work%20Orders/Send%20Work%20Order.request.yaml) | `POST {{base_url}}/{{namespace}}/work-orders/{{work_order_id}}/send` | fleetbase-api-key | `Fleetbase\Sdk\Services\WorkOrderService::sendWorkOrder` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Work%20Orders/Send%20Work%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Work%20Orders/.resources/Send%20Work%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Work Order](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Work%20Orders/Update%20a%20Work%20Order.request.yaml) | `PUT {{base_url}}/{{namespace}}/work-orders/{{work_order_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\WorkOrderService::updateWorkOrder` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Work%20Orders/Update%20a%20Work%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Work%20Orders/.resources/Update%20a%20Work%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Create a Zone](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Zones/Create%20a%20Zone.request.yaml) | `POST {{base_url}}/{{namespace}}/zones` | fleetbase-api-key | `Fleetbase\Sdk\Services\ZoneService::createZone` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Zones/Create%20a%20Zone.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Zones/.resources/Create%20a%20Zone.resources/examples/Create%20a%20Zone.example.yaml), [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Zones/.resources/Create%20a%20Zone.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Delete a Zone](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Zones/Delete%20a%20Zone.request.yaml) | `DELETE {{base_url}}/{{namespace}}/zones/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ZoneService::deleteZone` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Zones/Delete%20a%20Zone.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Zones/.resources/Delete%20a%20Zone.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Query Zones](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Zones/Query%20Zones.request.yaml) | `GET {{base_url}}/{{namespace}}/zones` | fleetbase-api-key | `Fleetbase\Sdk\Services\ZoneService::queryZones` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Zones/Query%20Zones.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Zones/.resources/Query%20Zones.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Retrieve a zone](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Zones/Retrieve%20a%20zone.request.yaml) | `GET {{base_url}}/{{namespace}}/zones/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ZoneService::retrieveZone` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Zones/Retrieve%20a%20zone.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Zones/.resources/Retrieve%20a%20zone.resources/examples/Delete%20a%20Zone.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase API / Update a Zone](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Zones/Update%20a%20Zone.request.yaml) | `PUT {{base_url}}/{{namespace}}/zones/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ZoneService::updateZone` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Zones/Update%20a%20Zone.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20API/Zones/.resources/Update%20a%20Zone.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Add Participant](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Add%20Participant.request.yaml) | `POST {{base_url}}/{{namespace}}/chat-channels/:id/add-participant` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::addParticipant` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Add%20Participant.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Create Chat Channel](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Create%20Chat%20Channel.request.yaml) | `POST {{base_url}}/{{namespace}}/chat-channels` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::createChatChannel` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Create%20Chat%20Channel.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Create Read Receipt](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Create%20Read%20Receipt.request.yaml) | `POST {{base_url}}/{{namespace}}/chat-channels/read-message/:chatMessageId` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::createReadReceipt` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Create%20Read%20Receipt.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Delete Chat Channel](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Delete%20Chat%20Channel.request.yaml) | `DELETE {{base_url}}/{{namespace}}/chat-channels/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::deleteChatChannel` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Delete%20Chat%20Channel.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Delete Message](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Delete%20Message.request.yaml) | `DELETE {{base_url}}/{{namespace}}/chat-channels/delete-message/:chatMessageId` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::deleteMessage` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Delete%20Message.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / List Available Participants](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/List%20Available%20Participants.request.yaml) | `GET {{base_url}}/{{namespace}}/chat-channels/available-participants` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::listAvailableParticipants` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/List%20Available%20Participants.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Query Chat Channels](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Query%20Chat%20Channels.request.yaml) | `GET {{base_url}}/{{namespace}}/chat-channels` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::queryChatChannels` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Query%20Chat%20Channels.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Remove Participant](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Remove%20Participant.request.yaml) | `DELETE {{base_url}}/{{namespace}}/chat-channels/remove-participant/:participantId` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::removeParticipant` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Remove%20Participant.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Retrieve Chat Channel](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Retrieve%20Chat%20Channel.request.yaml) | `GET {{base_url}}/{{namespace}}/chat-channels/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::retrieveChatChannel` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Retrieve%20Chat%20Channel.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Send Message](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Send%20Message.request.yaml) | `POST {{base_url}}/{{namespace}}/chat-channels/:id/send-message` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::sendMessage` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Send%20Message.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Update Chat Channel](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Update%20Chat%20Channel.request.yaml) | `PUT {{base_url}}/{{namespace}}/chat-channels/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::updateChatChannel` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Update%20Chat%20Channel.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Create Comment](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Comments/Create%20Comment.request.yaml) | `POST {{base_url}}/{{namespace}}/comments` | fleetbase-api-key | `Fleetbase\Sdk\Services\CommentService::createComment` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Comments/Create%20Comment.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Delete Comment](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Comments/Delete%20Comment.request.yaml) | `DELETE {{base_url}}/{{namespace}}/comments/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\CommentService::deleteComment` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Comments/Delete%20Comment.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Query Comments](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Comments/Query%20Comments.request.yaml) | `GET {{base_url}}/{{namespace}}/comments` | fleetbase-api-key | `Fleetbase\Sdk\Services\CommentService::queryComments` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Comments/Query%20Comments.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Retrieve Comment](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Comments/Retrieve%20Comment.request.yaml) | `GET {{base_url}}/{{namespace}}/comments/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\CommentService::retrieveComment` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Comments/Retrieve%20Comment.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Update Comment](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Comments/Update%20Comment.request.yaml) | `PUT {{base_url}}/{{namespace}}/comments/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\CommentService::updateComment` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Comments/Update%20Comment.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Delete a File](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Files/Delete%20a%20File.request.yaml) | `DELETE {{base_url}}/{{namespace}}/files/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\FileService::deleteFile` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Files/Delete%20a%20File.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Download File](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Files/Download%20File.request.yaml) | `GET {{base_url}}/{{namespace}}/files/:id/download` | fleetbase-api-key | `Fleetbase\Sdk\Services\FileService::downloadFile` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Files/Download%20File.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Query Files](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Files/Query%20Files.request.yaml) | `GET {{base_url}}/{{namespace}}/files` | fleetbase-api-key | `Fleetbase\Sdk\Services\FileService::queryFiles` | query ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Files/Query%20Files.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Retrieve a File](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Files/Retrieve%20a%20File.request.yaml) | `GET {{base_url}}/{{namespace}}/files/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\FileService::retrieveFile` | path ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Files/Retrieve%20a%20File.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Update File](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Files/Update%20File.request.yaml) | `PUT {{base_url}}/{{namespace}}/files/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\FileService::updateFile` | path, json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Files/Update%20File.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Upload Base64 File](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Files/Upload%20Base64%20File.request.yaml) | `POST {{base_url}}/{{namespace}}/files/base64` | fleetbase-api-key | `Fleetbase\Sdk\Services\FileService::uploadBase64File` | json body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Files/Upload%20Base64%20File.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Upload File](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Files/Upload%20File.request.yaml) | `POST {{base_url}}/{{namespace}}/files` | fleetbase-api-key | `Fleetbase\Sdk\Services\FileService::uploadFile` | formdata body ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Files/Upload%20File.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | -| [Fleetbase Core API / Get Current Organization](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Organizations/Get%20Current%20Organization.request.yaml) | `GET {{base_url}}/{{namespace}}/organizations/current` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrganizationService::getCurrentOrganization` | path/method only ([source](https://github.com/fleetbase/postman/blob/d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb/postman/collections/Fleetbase%20Core%20API/Organizations/Get%20Current%20Organization.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Contact](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Contacts/Create%20a%20Contact.request.yaml) | `POST {{base_url}}/{{namespace}}/contacts` | fleetbase-api-key | `Fleetbase\Sdk\Services\ContactService::createContact` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Contacts/Create%20a%20Contact.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Contacts/.resources/Create%20a%20Contact.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Contact](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Contacts/Delete%20a%20Contact.request.yaml) | `DELETE {{base_url}}/{{namespace}}/contacts/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ContactService::deleteContact` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Contacts/Delete%20a%20Contact.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Contacts/.resources/Delete%20a%20Contact.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Contacts](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Contacts/Query%20Contacts.request.yaml) | `GET {{base_url}}/{{namespace}}/contacts` | fleetbase-api-key | `Fleetbase\Sdk\Services\ContactService::queryContacts` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Contacts/Query%20Contacts.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Contacts/.resources/Query%20Contacts.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Contact](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Contacts/Retrieve%20a%20Contact.request.yaml) | `GET {{base_url}}/{{namespace}}/contacts/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ContactService::retrieveContact` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Contacts/Retrieve%20a%20Contact.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Contacts/.resources/Retrieve%20a%20Contact.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Contact](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Contacts/Update%20a%20Contact.request.yaml) | `PUT {{base_url}}/{{namespace}}/contacts/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ContactService::updateContact` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Contacts/Update%20a%20Contact.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Contacts/.resources/Update%20a%20Contact.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Customer](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Create%20a%20Customer.request.yaml) | `POST {{base_url}}/{{namespace}}/customers` | fleetbase-api-key | `Fleetbase\Sdk\Services\CustomerService::createCustomer` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Create%20a%20Customer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Customer Order](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Create%20a%20Customer%20Order.request.yaml) | `POST {{base_url}}/{{namespace}}/customers/orders` | customer-token | `Fleetbase\Sdk\Services\CustomerService::createCustomerOrder` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Create%20a%20Customer%20Order.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Forgot Customer Password](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Forgot%20Customer%20Password.request.yaml) | `POST {{base_url}}/{{namespace}}/customers/forgot-password` | fleetbase-api-key | `Fleetbase\Sdk\Services\CustomerService::forgotCustomerPassword` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Forgot%20Customer%20Password.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / List Customer Orders](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/List%20Customer%20Orders.request.yaml) | `GET {{base_url}}/{{namespace}}/customers/orders` | customer-token | `Fleetbase\Sdk\Services\CustomerService::listCustomerOrders` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/List%20Customer%20Orders.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / List Customer Places](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/List%20Customer%20Places.request.yaml) | `GET {{base_url}}/{{namespace}}/customers/places` | customer-token | `Fleetbase\Sdk\Services\CustomerService::listCustomerPlaces` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/List%20Customer%20Places.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Login Customer](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Login%20Customer.request.yaml) | `POST {{base_url}}/{{namespace}}/customers/login` | fleetbase-api-key | `Fleetbase\Sdk\Services\CustomerService::loginCustomer` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Login%20Customer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Logout All Customer Sessions](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Logout%20All%20Customer%20Sessions.request.yaml) | `POST {{base_url}}/{{namespace}}/customers/logout-all` | customer-token | `Fleetbase\Sdk\Services\CustomerService::logoutAllCustomerSessions` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Logout%20All%20Customer%20Sessions.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Logout Customer](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Logout%20Customer.request.yaml) | `POST {{base_url}}/{{namespace}}/customers/logout` | customer-token | `Fleetbase\Sdk\Services\CustomerService::logoutCustomer` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Logout%20Customer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Register Customer Device](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Register%20Customer%20Device.request.yaml) | `POST {{base_url}}/{{namespace}}/customers/register-device` | customer-token | `Fleetbase\Sdk\Services\CustomerService::registerCustomerDevice` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Register%20Customer%20Device.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Request Customer Creation Code](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Request%20Customer%20Creation%20Code.request.yaml) | `POST {{base_url}}/{{namespace}}/customers/request-creation-code` | fleetbase-api-key | `Fleetbase\Sdk\Services\CustomerService::requestCustomerCreationCode` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Request%20Customer%20Creation%20Code.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Request Customer Login SMS](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Request%20Customer%20Login%20SMS.request.yaml) | `POST {{base_url}}/{{namespace}}/customers/login-with-sms` | fleetbase-api-key | `Fleetbase\Sdk\Services\CustomerService::requestCustomerLoginSms` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Request%20Customer%20Login%20SMS.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Reset Customer Password](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Reset%20Customer%20Password.request.yaml) | `POST {{base_url}}/{{namespace}}/customers/reset-password` | fleetbase-api-key | `Fleetbase\Sdk\Services\CustomerService::resetCustomerPassword` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Reset%20Customer%20Password.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve Authenticated Customer](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Retrieve%20Authenticated%20Customer.request.yaml) | `GET {{base_url}}/{{namespace}}/customers/me` | customer-token | `Fleetbase\Sdk\Services\CustomerService::retrieveAuthenticatedCustomer` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Retrieve%20Authenticated%20Customer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Customer Order](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Retrieve%20a%20Customer%20Order.request.yaml) | `GET {{base_url}}/{{namespace}}/customers/orders/{{customer_order_id}}` | customer-token | `Fleetbase\Sdk\Services\CustomerService::retrieveCustomerOrder` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Retrieve%20a%20Customer%20Order.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update Authenticated Customer](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Update%20Authenticated%20Customer.request.yaml) | `PUT {{base_url}}/{{namespace}}/customers/me` | customer-token | `Fleetbase\Sdk\Services\CustomerService::updateAuthenticatedCustomer` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Update%20Authenticated%20Customer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Verify Customer Login Code](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Verify%20Customer%20Login%20Code.request.yaml) | `POST {{base_url}}/{{namespace}}/customers/verify-code` | fleetbase-api-key | `Fleetbase\Sdk\Services\CustomerService::verifyCustomerLoginCode` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Customers/Verify%20Customer%20Login%20Code.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Attach Device](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/Attach%20Device.request.yaml) | `POST {{base_url}}/{{namespace}}/devices/{{device_id}}/attach` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::attachDevice` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/Attach%20Device.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/.resources/Attach%20Device.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Device](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/Create%20a%20Device.request.yaml) | `POST {{base_url}}/{{namespace}}/devices` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::createDevice` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/Create%20a%20Device.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/.resources/Create%20a%20Device.resources/examples/Created.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Device](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/Delete%20a%20Device.request.yaml) | `DELETE {{base_url}}/{{namespace}}/devices/{{device_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::deleteDevice` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/Delete%20a%20Device.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/.resources/Delete%20a%20Device.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Detach Device](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/Detach%20Device.request.yaml) | `POST {{base_url}}/{{namespace}}/devices/{{device_id}}/detach` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::detachDevice` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/Detach%20Device.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/.resources/Detach%20Device.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Devices](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/Query%20Devices.request.yaml) | `GET {{base_url}}/{{namespace}}/devices` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::queryDevices` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/Query%20Devices.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/.resources/Query%20Devices.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Device](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/Retrieve%20a%20Device.request.yaml) | `GET {{base_url}}/{{namespace}}/devices/{{device_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::retrieveDevice` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/Retrieve%20a%20Device.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/.resources/Retrieve%20a%20Device.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Device](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/Update%20a%20Device.request.yaml) | `PUT {{base_url}}/{{namespace}}/devices/{{device_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::updateDevice` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/Update%20a%20Device.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Devices/.resources/Update%20a%20Device.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Change Driver Password](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Change%20Driver%20Password.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/:id/change-password` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::changeDriverPassword` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Change%20Driver%20Password.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Driver](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Create%20a%20Driver.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::createDriver` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Create%20a%20Driver.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/.resources/Create%20a%20Driver.resources/examples/OK.example.yaml), [422](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/.resources/Create%20a%20Driver.resources/examples/Unprocessable%20Entity.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create an Operational Driver](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Create%20an%20Operational%20Driver.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::createDriver` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Create%20an%20Operational%20Driver.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/.resources/Create%20an%20Operational%20Driver.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Driver](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Delete%20a%20Driver.request.yaml) | `DELETE {{base_url}}/{{namespace}}/drivers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::deleteDriver` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Delete%20a%20Driver.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/.resources/Delete%20a%20Driver.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete an Operational Driver](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Delete%20an%20Operational%20Driver.request.yaml) | `DELETE {{base_url}}/{{namespace}}/drivers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::deleteDriver` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Delete%20an%20Operational%20Driver.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Get Driver Current Organization](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Get%20Driver%20Current%20Organization.request.yaml) | `GET {{base_url}}/{{namespace}}/drivers/:id/current-organization` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::getDriverCurrentOrganization` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Get%20Driver%20Current%20Organization.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / List Driver Manifests](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/List%20Driver%20Manifests.request.yaml) | `GET {{base_url}}/{{namespace}}/drivers/:id/manifests` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::listDriverManifests` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/List%20Driver%20Manifests.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / List Driver Organizations](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/List%20Driver%20Organizations.request.yaml) | `GET {{base_url}}/{{namespace}}/drivers/:id/organizations` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::listDriverOrganizations` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/List%20Driver%20Organizations.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Login Driver](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Login%20Driver.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/login` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::loginDriver` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Login%20Driver.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Drivers](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Query%20Drivers.request.yaml) | `GET {{base_url}}/{{namespace}}/drivers` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::queryDrivers` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Query%20Drivers.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/.resources/Query%20Drivers.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Register Device](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Register%20Device.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/register-device` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::registerDevice` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Register%20Device.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Register Driver Device](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Register%20Driver%20Device.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/:id/register-device` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::registerDriverDevice` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Register%20Driver%20Device.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Request Driver Login SMS](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Request%20Driver%20Login%20SMS.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/login-with-sms` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::requestDriverLoginSms` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Request%20Driver%20Login%20SMS.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Request Driver Password Reset](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Request%20Driver%20Password%20Reset.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/forgot-password` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::requestDriverPasswordReset` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Request%20Driver%20Password%20Reset.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Reset Driver Password](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Reset%20Driver%20Password.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/reset-password` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::resetDriverPassword` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Reset%20Driver%20Password.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Driver](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Retrieve%20a%20Driver.request.yaml) | `GET {{base_url}}/{{namespace}}/drivers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::retrieveDriver` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Retrieve%20a%20Driver.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/.resources/Retrieve%20a%20Driver.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Simulate Driver Route](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Simulate%20Driver%20Route.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/:id/simulate` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::simulateDriverRoute` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Simulate%20Driver%20Route.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Switch Driver Organization](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Switch%20Driver%20Organization.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/:id/switch-organization` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::switchDriverOrganization` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Switch%20Driver%20Organization.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Toggle Driver Online](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Toggle%20Driver%20Online.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/:id/toggle-online` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::toggleDriverOnline` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Toggle%20Driver%20Online.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Track Driver](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Track%20Driver.request.yaml) | `PATCH {{base_url}}/{{namespace}}/drivers/:id/track` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::trackDriver` | path, text body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Track%20Driver.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Driver](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Update%20a%20Driver.request.yaml) | `PUT {{base_url}}/{{namespace}}/drivers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::updateDriver` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Update%20a%20Driver.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/.resources/Update%20a%20Driver.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Driver Unchanged Contact](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Update%20a%20Driver%20Unchanged%20Contact.request.yaml) | `PUT {{base_url}}/{{namespace}}/drivers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::updateDriver` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Update%20a%20Driver%20Unchanged%20Contact.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Verify Driver Login Code](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Verify%20Driver%20Login%20Code.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers/verify-code` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::verifyDriverLoginCode` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Drivers/Verify%20Driver%20Login%20Code.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create an Entity](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Entities/Create%20an%20Entity.request.yaml) | `POST {{base_url}}/{{namespace}}/entities` | fleetbase-api-key | `Fleetbase\Sdk\Services\EntityService::createEntity` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Entities/Create%20an%20Entity.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Entities/.resources/Create%20an%20Entity.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Entity](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Entities/Delete%20a%20Entity.request.yaml) | `DELETE {{base_url}}/{{namespace}}/entities/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\EntityService::deleteEntity` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Entities/Delete%20a%20Entity.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Entities/.resources/Delete%20a%20Entity.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Entities](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Entities/Query%20Entities.request.yaml) | `GET {{base_url}}/{{namespace}}/entities` | fleetbase-api-key | `Fleetbase\Sdk\Services\EntityService::queryEntities` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Entities/Query%20Entities.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve an Entity](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Entities/Retrieve%20an%20Entity.request.yaml) | `GET {{base_url}}/{{namespace}}/entities/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\EntityService::retrieveEntity` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Entities/Retrieve%20an%20Entity.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Entities/.resources/Retrieve%20an%20Entity.resources/examples/OK.example.yaml), [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Entities/.resources/Retrieve%20an%20Entity.resources/examples/Retrieve%20an%20Entity.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Entity](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Entities/Update%20a%20Entity.request.yaml) | `PUT {{base_url}}/{{namespace}}/entities/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\EntityService::updateEntity` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Entities/Update%20a%20Entity.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Entities/.resources/Update%20a%20Entity.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Attach Equipment](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Equipment/Attach%20Equipment.request.yaml) | `POST {{base_url}}/{{namespace}}/equipment/:id/attach` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::attachEquipment` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Equipment/Attach%20Equipment.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create Equipment](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Equipment/Create%20Equipment.request.yaml) | `POST {{base_url}}/{{namespace}}/equipment` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::createEquipment` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Equipment/Create%20Equipment.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Equipment/.resources/Create%20Equipment.resources/examples/Created.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete Equipment](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Equipment/Delete%20Equipment.request.yaml) | `DELETE {{base_url}}/{{namespace}}/equipment/{{equipment_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::deleteEquipment` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Equipment/Delete%20Equipment.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Equipment/.resources/Delete%20Equipment.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Detach Equipment](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Equipment/Detach%20Equipment.request.yaml) | `POST {{base_url}}/{{namespace}}/equipment/:id/detach` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::detachEquipment` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Equipment/Detach%20Equipment.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Equipment](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Equipment/Query%20Equipment.request.yaml) | `GET {{base_url}}/{{namespace}}/equipment` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::queryEquipment` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Equipment/Query%20Equipment.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Equipment/.resources/Query%20Equipment.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve Equipment](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Equipment/Retrieve%20Equipment.request.yaml) | `GET {{base_url}}/{{namespace}}/equipment/{{equipment_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::retrieveEquipment` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Equipment/Retrieve%20Equipment.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Equipment/.resources/Retrieve%20Equipment.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update Equipment](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Equipment/Update%20Equipment.request.yaml) | `PUT {{base_url}}/{{namespace}}/equipment/{{equipment_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::updateEquipment` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Equipment/Update%20Equipment.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Equipment/.resources/Update%20Equipment.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Assign a Driver to a Fleet](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Assign%20a%20Driver%20to%20a%20Fleet.request.yaml) | `POST {{base_url}}/{{namespace}}/fleets/:id/drivers/:driver` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::assignDriverToFleet` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Assign%20a%20Driver%20to%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/.resources/Assign%20a%20Driver%20to%20a%20Fleet.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Assign a Vehicle to a Fleet](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Assign%20a%20Vehicle%20to%20a%20Fleet.request.yaml) | `POST {{base_url}}/{{namespace}}/fleets/:id/vehicles/:vehicle` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::assignVehicleToFleet` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Assign%20a%20Vehicle%20to%20a%20Fleet.request.yaml)) | [404](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/.resources/Assign%20a%20Vehicle%20to%20a%20Fleet.resources/examples/Not%20Found.example.yaml), [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/.resources/Assign%20a%20Vehicle%20to%20a%20Fleet.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Fleet](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Create%20a%20Fleet.request.yaml) | `POST {{base_url}}/{{namespace}}/fleets` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::createFleet` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Create%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/.resources/Create%20a%20Fleet.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Fleet Driver](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Create%20a%20Fleet%20Driver.request.yaml) | `POST {{base_url}}/{{namespace}}/drivers` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::createDriver` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Create%20a%20Fleet%20Driver.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Fleet Vehicle](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Create%20a%20Fleet%20Vehicle.request.yaml) | `POST {{base_url}}/{{namespace}}/vehicles` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::createVehicle` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Create%20a%20Fleet%20Vehicle.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Subfleet](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Create%20a%20Subfleet.request.yaml) | `POST {{base_url}}/{{namespace}}/fleets` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::createFleet` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Create%20a%20Subfleet.request.yaml)) | [404](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/.resources/Create%20a%20Subfleet.resources/examples/Not%20Found.example.yaml), [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/.resources/Create%20a%20Subfleet.resources/examples/OK.example.yaml), [422](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/.resources/Create%20a%20Subfleet.resources/examples/Unprocessable%20Entity.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Fleet](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Delete%20a%20Fleet.request.yaml) | `DELETE {{base_url}}/{{namespace}}/fleets/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::deleteFleet` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Delete%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/.resources/Delete%20a%20Fleet.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Fleet Driver](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Delete%20a%20Fleet%20Driver.request.yaml) | `DELETE {{base_url}}/{{namespace}}/drivers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\DriverService::deleteDriver` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Delete%20a%20Fleet%20Driver.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Fleet Vehicle](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Delete%20a%20Fleet%20Vehicle.request.yaml) | `DELETE {{base_url}}/{{namespace}}/vehicles/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::deleteVehicle` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Delete%20a%20Fleet%20Vehicle.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Subfleet](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Delete%20a%20Subfleet.request.yaml) | `DELETE {{base_url}}/{{namespace}}/fleets/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::deleteFleet` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Delete%20a%20Subfleet.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Fleets](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Query%20Fleets.request.yaml) | `GET {{base_url}}/{{namespace}}/fleets` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::queryFleets` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Query%20Fleets.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/.resources/Query%20Fleets.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Reassign a Driver to a Fleet](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Reassign%20a%20Driver%20to%20a%20Fleet.request.yaml) | `POST {{base_url}}/{{namespace}}/fleets/:id/drivers/:driver` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::assignDriverToFleet` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Reassign%20a%20Driver%20to%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/.resources/Reassign%20a%20Driver%20to%20a%20Fleet.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Reassign a Vehicle to a Fleet](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Reassign%20a%20Vehicle%20to%20a%20Fleet.request.yaml) | `POST {{base_url}}/{{namespace}}/fleets/:id/vehicles/:vehicle` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::assignVehicleToFleet` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Reassign%20a%20Vehicle%20to%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/.resources/Reassign%20a%20Vehicle%20to%20a%20Fleet.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Remove a Driver from a Fleet](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Remove%20a%20Driver%20from%20a%20Fleet.request.yaml) | `DELETE {{base_url}}/{{namespace}}/fleets/:id/drivers/:driver` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::removeDriverFromFleet` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Remove%20a%20Driver%20from%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/.resources/Remove%20a%20Driver%20from%20a%20Fleet.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Remove a Driver from a Fleet Again](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Remove%20a%20Driver%20from%20a%20Fleet%20Again.request.yaml) | `DELETE {{base_url}}/{{namespace}}/fleets/:id/drivers/:driver` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::removeDriverFromFleet` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Remove%20a%20Driver%20from%20a%20Fleet%20Again.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/.resources/Remove%20a%20Driver%20from%20a%20Fleet%20Again.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Remove a Vehicle from a Fleet](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Remove%20a%20Vehicle%20from%20a%20Fleet.request.yaml) | `DELETE {{base_url}}/{{namespace}}/fleets/:id/vehicles/:vehicle` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::removeVehicleFromFleet` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Remove%20a%20Vehicle%20from%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/.resources/Remove%20a%20Vehicle%20from%20a%20Fleet.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Remove a Vehicle from a Fleet Again](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Remove%20a%20Vehicle%20from%20a%20Fleet%20Again.request.yaml) | `DELETE {{base_url}}/{{namespace}}/fleets/:id/vehicles/:vehicle` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::removeVehicleFromFleet` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Remove%20a%20Vehicle%20from%20a%20Fleet%20Again.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/.resources/Remove%20a%20Vehicle%20from%20a%20Fleet%20Again.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Fleet](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Retrieve%20a%20Fleet.request.yaml) | `GET {{base_url}}/{{namespace}}/fleets/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::retrieveFleet` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Retrieve%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/.resources/Retrieve%20a%20Fleet.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Fleet](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Update%20a%20Fleet.request.yaml) | `PUT {{base_url}}/{{namespace}}/fleets/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\FleetService::updateFleet` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/Update%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fleets/.resources/Update%20a%20Fleet.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Fuel Report](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Reports/Create%20a%20Fuel%20Report.request.yaml) | `POST {{base_url}}/{{namespace}}/fuel-reports` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelReportService::createFuelReport` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Reports/Create%20a%20Fuel%20Report.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Fuel Report](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Reports/Delete%20a%20Fuel%20Report.request.yaml) | `DELETE {{base_url}}/{{namespace}}/fuel-reports/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelReportService::deleteFuelReport` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Reports/Delete%20a%20Fuel%20Report.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Fuel Reports](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Reports/Query%20Fuel%20Reports.request.yaml) | `GET {{base_url}}/{{namespace}}/fuel-reports` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelReportService::queryFuelReports` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Reports/Query%20Fuel%20Reports.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Fuel Report](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Reports/Retrieve%20a%20Fuel%20Report.request.yaml) | `GET {{base_url}}/{{namespace}}/fuel-reports/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelReportService::retrieveFuelReport` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Reports/Retrieve%20a%20Fuel%20Report.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Fuel Report](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Reports/Update%20a%20Fuel%20Report.request.yaml) | `PUT {{base_url}}/{{namespace}}/fuel-reports/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelReportService::updateFuelReport` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Reports/Update%20a%20Fuel%20Report.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Fuel Transaction](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/Create%20a%20Fuel%20Transaction.request.yaml) | `POST {{base_url}}/{{namespace}}/fuel-transactions` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelTransactionService::createFuelTransaction` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/Create%20a%20Fuel%20Transaction.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/.resources/Create%20a%20Fuel%20Transaction.resources/examples/Created.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Fuel Transaction](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/Delete%20a%20Fuel%20Transaction.request.yaml) | `DELETE {{base_url}}/{{namespace}}/fuel-transactions/{{fuel_transaction_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelTransactionService::deleteFuelTransaction` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/Delete%20a%20Fuel%20Transaction.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/.resources/Delete%20a%20Fuel%20Transaction.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Match Fuel Transaction Order](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/Match%20Fuel%20Transaction%20Order.request.yaml) | `POST {{base_url}}/{{namespace}}/fuel-transactions/{{fuel_transaction_id}}/match-order` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelTransactionService::matchFuelTransactionOrder` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/Match%20Fuel%20Transaction%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/.resources/Match%20Fuel%20Transaction%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Match Fuel Transaction Vehicle](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/Match%20Fuel%20Transaction%20Vehicle.request.yaml) | `POST {{base_url}}/{{namespace}}/fuel-transactions/{{fuel_transaction_id}}/match-vehicle` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelTransactionService::matchFuelTransactionVehicle` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/Match%20Fuel%20Transaction%20Vehicle.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/.resources/Match%20Fuel%20Transaction%20Vehicle.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Fuel Transactions](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/Query%20Fuel%20Transactions.request.yaml) | `GET {{base_url}}/{{namespace}}/fuel-transactions` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelTransactionService::queryFuelTransactions` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/Query%20Fuel%20Transactions.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/.resources/Query%20Fuel%20Transactions.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Reprocess Fuel Transaction](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/Reprocess%20Fuel%20Transaction.request.yaml) | `POST {{base_url}}/{{namespace}}/fuel-transactions/{{fuel_transaction_id}}/reprocess` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelTransactionService::reprocessFuelTransaction` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/Reprocess%20Fuel%20Transaction.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/.resources/Reprocess%20Fuel%20Transaction.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Fuel Transaction](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/Retrieve%20a%20Fuel%20Transaction.request.yaml) | `GET {{base_url}}/{{namespace}}/fuel-transactions/{{fuel_transaction_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelTransactionService::retrieveFuelTransaction` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/Retrieve%20a%20Fuel%20Transaction.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/.resources/Retrieve%20a%20Fuel%20Transaction.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Review Fuel Transaction](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/Review%20Fuel%20Transaction.request.yaml) | `POST {{base_url}}/{{namespace}}/fuel-transactions/{{fuel_transaction_id}}/review` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelTransactionService::reviewFuelTransaction` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/Review%20Fuel%20Transaction.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/.resources/Review%20Fuel%20Transaction.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Fuel Transaction](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/Update%20a%20Fuel%20Transaction.request.yaml) | `PUT {{base_url}}/{{namespace}}/fuel-transactions/{{fuel_transaction_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\FuelTransactionService::updateFuelTransaction` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/Update%20a%20Fuel%20Transaction.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Fuel%20Transactions/.resources/Update%20a%20Fuel%20Transaction.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Get Driver Geofence History](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Geofences/Get%20Driver%20Geofence%20History.request.yaml) | `GET {{base_url}}/{{namespace}}/geofences/driver/:driverId/history` | fleetbase-api-key | `Fleetbase\Sdk\Services\GeofenceService::getDriverGeofenceHistory` | path, query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Geofences/Get%20Driver%20Geofence%20History.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Get Geofence Dwell Report](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Geofences/Get%20Geofence%20Dwell%20Report.request.yaml) | `GET {{base_url}}/{{namespace}}/geofences/dwell-report` | fleetbase-api-key | `Fleetbase\Sdk\Services\GeofenceService::getGeofenceDwellReport` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Geofences/Get%20Geofence%20Dwell%20Report.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Get Geofence Inventory](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Geofences/Get%20Geofence%20Inventory.request.yaml) | `GET {{base_url}}/{{namespace}}/geofences/inventory` | fleetbase-api-key | `Fleetbase\Sdk\Services\GeofenceService::getGeofenceInventory` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Geofences/Get%20Geofence%20Inventory.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / List Geofence Events](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Geofences/List%20Geofence%20Events.request.yaml) | `GET {{base_url}}/{{namespace}}/geofences/events` | fleetbase-api-key | `Fleetbase\Sdk\Services\GeofenceService::listGeofenceEvents` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Geofences/List%20Geofence%20Events.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / List Inspection Forms](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Inspections/List%20Inspection%20Forms.request.yaml) | `GET {{base_url}}/{{namespace}}/inspection-forms` | fleetbase-api-key | `Fleetbase\Sdk\Services\InspectionFormService::listInspectionForms` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Inspections/List%20Inspection%20Forms.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / List Inspections](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Inspections/List%20Inspections.request.yaml) | `GET {{base_url}}/{{namespace}}/inspections` | fleetbase-api-key | `Fleetbase\Sdk\Services\InspectionService::listInspections` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Inspections/List%20Inspections.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / List Vehicle Inspections](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Inspections/List%20Vehicle%20Inspections.request.yaml) | `GET {{base_url}}/{{namespace}}/vehicles/:id/inspections` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::listVehicleInspections` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Inspections/List%20Vehicle%20Inspections.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve an Inspection](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Inspections/Retrieve%20an%20Inspection.request.yaml) | `GET {{base_url}}/{{namespace}}/inspections/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\InspectionService::retrieveInspection` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Inspections/Retrieve%20an%20Inspection.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve an Inspection Form](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Inspections/Retrieve%20an%20Inspection%20Form.request.yaml) | `GET {{base_url}}/{{namespace}}/inspection-forms/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\InspectionFormService::retrieveInspectionForm` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Inspections/Retrieve%20an%20Inspection%20Form.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Submit an Inspection](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Inspections/Submit%20an%20Inspection.request.yaml) | `POST {{base_url}}/{{namespace}}/inspections` | fleetbase-api-key | `Fleetbase\Sdk\Services\InspectionService::submitInspection` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Inspections/Submit%20an%20Inspection.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create an Issue](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Issues/Create%20an%20Issue.request.yaml) | `POST {{base_url}}/{{namespace}}/issues` | fleetbase-api-key | `Fleetbase\Sdk\Services\IssueService::createIssue` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Issues/Create%20an%20Issue.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete an Issue](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Issues/Delete%20an%20Issue.request.yaml) | `DELETE {{base_url}}/{{namespace}}/issues/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\IssueService::deleteIssue` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Issues/Delete%20an%20Issue.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Issues](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Issues/Query%20Issues.request.yaml) | `GET {{base_url}}/{{namespace}}/issues` | fleetbase-api-key | `Fleetbase\Sdk\Services\IssueService::queryIssues` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Issues/Query%20Issues.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve an Issue](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Issues/Retrieve%20an%20Issue.request.yaml) | `GET {{base_url}}/{{namespace}}/issues/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\IssueService::retrieveIssue` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Issues/Retrieve%20an%20Issue.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update an Issue](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Issues/Update%20an%20Issue.request.yaml) | `PUT {{base_url}}/{{namespace}}/issues/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\IssueService::updateIssue` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Issues/Update%20an%20Issue.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Render Label](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Labels/Render%20Label.request.yaml) | `GET {{base_url}}/{{namespace}}/labels/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\LabelService::renderLabel` | path, query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Labels/Render%20Label.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Optimize a Manifest](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Manifests/Optimize%20a%20Manifest.request.yaml) | `POST {{base_url}}/{{namespace}}/manifests/:id/optimize` | fleetbase-api-key | `Fleetbase\Sdk\Services\ManifestService::optimizeManifest` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Manifests/Optimize%20a%20Manifest.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Manifest](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Manifests/Retrieve%20a%20Manifest.request.yaml) | `GET {{base_url}}/{{namespace}}/manifests/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ManifestService::retrieveManifest` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Manifests/Retrieve%20a%20Manifest.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Manifest Stop](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Manifests/Update%20a%20Manifest%20Stop.request.yaml) | `PATCH {{base_url}}/{{namespace}}/manifest-stops/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ManifestService::updateManifestStop` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Manifests/Update%20a%20Manifest%20Stop.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Get Driver Onboard Settings](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Onboard/Get%20Driver%20Onboard%20Settings.request.yaml) | `GET {{base_url}}/{{namespace}}/onboard/driver-onboard-settings/:companyId` | fleetbase-api-key | `Fleetbase\Sdk\Services\OnboardService::getDriverOnboardSettings` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Onboard/Get%20Driver%20Onboard%20Settings.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Commit Orchestrator Plan](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orchestrator/Commit%20Orchestrator%20Plan.request.yaml) | `POST {{base_url}}/{{namespace}}/orchestrator/commit` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrchestratorService::commitOrchestratorPlan` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orchestrator/Commit%20Orchestrator%20Plan.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orchestrator/.resources/Commit%20Orchestrator%20Plan.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Run Orchestrator](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orchestrator/Run%20Orchestrator.request.yaml) | `POST {{base_url}}/{{namespace}}/orchestrator/run` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrchestratorService::runOrchestrator` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orchestrator/Run%20Orchestrator.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orchestrator/.resources/Run%20Orchestrator.resources/examples/Multi-phase%20Prior%20Assignments.example.yaml), [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orchestrator/.resources/Run%20Orchestrator.resources/examples/Native%20Capacity%20Allocation.example.yaml), [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orchestrator/.resources/Run%20Orchestrator.resources/examples/Single-phase%20VROOM%20Allocation.example.yaml), [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orchestrator/.resources/Run%20Orchestrator.resources/examples/VROOM%20Capacity%20Only%20Allocation.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Order Configs](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Order%20Configs/Query%20Order%20Configs.request.yaml) | `GET {{base_url}}/{{namespace}}/order-configs` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderConfigService::queryOrderConfigs` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Order%20Configs/Query%20Order%20Configs.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve an Order Config](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Order%20Configs/Retrieve%20an%20Order%20Config.request.yaml) | `GET {{base_url}}/{{namespace}}/order-configs/{{order_config_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderConfigService::retrieveOrderConfig` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Order%20Configs/Retrieve%20an%20Order%20Config.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Cancel an Order](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Cancel%20an%20Order.request.yaml) | `DELETE {{base_url}}/{{namespace}}/orders/:id/cancel` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::cancelOrder` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Cancel%20an%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/.resources/Cancel%20an%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Capture Photo for Order](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Capture%20Photo%20for%20Order.request.yaml) | `POST {{base_url}}/{{namespace}}/orders/:id/capture-photo/:subjectId` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::capturePhotoForOrder` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Capture%20Photo%20for%20Order.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Capture QR Code for Order](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Capture%20QR%20Code%20for%20Order.request.yaml) | `POST {{base_url}}/{{namespace}}/orders/:id/capture-qr/:subject-id` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::captureQrCodeForOrder` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Capture%20QR%20Code%20for%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/.resources/Capture%20QR%20Code%20for%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Capture Signature for Order](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Capture%20Signature%20for%20Order.request.yaml) | `POST {{base_url}}/{{namespace}}/orders/:id/capture-signature/:subject-id` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::captureSignatureForOrder` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Capture%20Signature%20for%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/.resources/Capture%20Signature%20for%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Complete an Order](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Complete%20an%20Order.request.yaml) | `POST {{base_url}}/{{namespace}}/orders/:id/complete` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::completeOrder` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Complete%20an%20Order.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create an Order](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order.request.yaml) | `POST {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::createOrder` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/.resources/Create%20an%20Order.resources/examples/Create%20an%20Order%20using%20Complete%20Payload.example.yaml), [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/.resources/Create%20an%20Order.resources/examples/Create%20an%20Order%20using%20Payload.example.yaml), [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/.resources/Create%20an%20Order.resources/examples/Create%20an%20Order%20using%20Waypoints%20and%20Entities%20with%20Photos.example.yaml), [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/.resources/Create%20an%20Order.resources/examples/Create%20an%20Order%20using%20Waypoints%20and%20Entity%20Destinations.example.yaml), [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/.resources/Create%20an%20Order.resources/examples/Create%20an%20Order%20using%20only%20Pickup%20Dropoff.example.yaml), [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/.resources/Create%20an%20Order.resources/examples/Create%20an%20Order%20using%20only%20Waypoints.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create an Order using Complete Payload](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20Complete%20Payload.request.yaml) | `POST {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::createOrderUsingCompletePayload` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20Complete%20Payload.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create an Order using Coordinates](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20Coordinates.request.yaml) | `POST {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::createOrderUsingCoordinates` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20Coordinates.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create an Order using GeoJSON Points](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20GeoJSON%20Points.request.yaml) | `POST {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::createOrderUsingGeojsonPoints` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20GeoJSON%20Points.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create an Order using Payload](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20Payload.request.yaml) | `POST {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::createOrderUsingPayload` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20Payload.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create an Order using Waypoints and Entities with Photos](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20Waypoints%20and%20Entities%20with%20Photos.request.yaml) | `POST {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::createOrderUsingWaypointsAndEntitiesWithPhotos` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20Waypoints%20and%20Entities%20with%20Photos.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create an Order using Waypoints and Entity Destinations](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20Waypoints%20and%20Entity%20Destinations.request.yaml) | `POST {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::createOrderUsingWaypointsAndEntityDestinations` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20Waypoints%20and%20Entity%20Destinations.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create an Order using only Pickup Dropoff](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20only%20Pickup%20Dropoff.request.yaml) | `POST {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::createOrderUsingOnlyPickupDropoff` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20only%20Pickup%20Dropoff.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create an Order using only Waypoints](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20only%20Waypoints.request.yaml) | `POST {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::createOrderUsingOnlyWaypoints` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20using%20only%20Waypoints.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create an Order with Empty Relationships](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20with%20Empty%20Relationships.request.yaml) | `POST {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::createOrder` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order%20with%20Empty%20Relationships.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete an Order](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Delete%20an%20Order.request.yaml) | `DELETE {{base_url}}/{{namespace}}/orders/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::deleteOrder` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Delete%20an%20Order.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Dispatch an Order](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Dispatch%20an%20Order.request.yaml) | `PATCH {{base_url}}/{{namespace}}/orders/:id/dispatch` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::dispatchOrder` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Dispatch%20an%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/.resources/Dispatch%20an%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Get Editable Entity Fields](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Get%20Editable%20Entity%20Fields.request.yaml) | `GET {{base_url}}/{{namespace}}/orders/:id/editable-entity-fields` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::getEditableEntityFields` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Get%20Editable%20Entity%20Fields.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Get Order Distance and Time](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Get%20Order%20Distance%20and%20Time.request.yaml) | `GET {{base_url}}/{{namespace}}/orders/:id/distance-and-time` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::getOrderDistanceAndTime` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Get%20Order%20Distance%20and%20Time.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Get Order ETA](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Get%20Order%20ETA.request.yaml) | `GET {{base_url}}/{{namespace}}/orders/:id/eta` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::getOrderEta` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Get%20Order%20ETA.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Get Order Next Activity](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Get%20Order%20Next%20Activity.request.yaml) | `GET {{base_url}}/{{namespace}}/orders/:id/next-activity` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::getOrderNextActivity` | path, query, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Get%20Order%20Next%20Activity.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/.resources/Get%20Order%20Next%20Activity.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Get Order Tracker](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Get%20Order%20Tracker.request.yaml) | `GET {{base_url}}/{{namespace}}/orders/:id/tracker` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::getOrderTracker` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Get%20Order%20Tracker.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / List Order Comments](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/List%20Order%20Comments.request.yaml) | `GET {{base_url}}/{{namespace}}/orders/:id/comments` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::listOrderComments` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/List%20Order%20Comments.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / List Order Proofs](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/List%20Order%20Proofs.request.yaml) | `GET {{base_url}}/{{namespace}}/orders/:id/proofs/:subjectId` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::listOrderProofs` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/List%20Order%20Proofs.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Orders](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Query%20Orders.request.yaml) | `GET {{base_url}}/{{namespace}}/orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::queryOrders` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Query%20Orders.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve an Order](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Retrieve%20an%20Order.request.yaml) | `GET {{base_url}}/{{namespace}}/orders/{{order_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::retrieveOrder` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Retrieve%20an%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/.resources/Retrieve%20an%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Schedule an Order](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Schedule%20an%20Order.request.yaml) | `PATCH {{base_url}}/{{namespace}}/orders/:id/schedule` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::scheduleOrder` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Schedule%20an%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/.resources/Schedule%20an%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Set Order Destination](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Set%20Order%20Destination.request.yaml) | `PATCH {{base_url}}/{{namespace}}/orders/:id/set-destination/:placeId` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::setOrderDestination` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Set%20Order%20Destination.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/.resources/Set%20Order%20Destination.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Start an Order](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Start%20an%20Order.request.yaml) | `POST {{base_url}}/{{namespace}}/orders/:id/start` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::startOrder` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Start%20an%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/.resources/Start%20an%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update Order Activity](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Update%20Order%20Activity.request.yaml) | `POST {{base_url}}/{{namespace}}/orders/:id/update-activity` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::updateOrderActivity` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Update%20Order%20Activity.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/.resources/Update%20Order%20Activity.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update an Order](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Update%20an%20Order.request.yaml) | `PUT {{base_url}}/{{namespace}}/orders/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrderService::updateOrder` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/Update%20an%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Orders/.resources/Update%20an%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Get Current Organization](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Organizations/Get%20Current%20Organization.request.yaml) | `GET {{base_url}}/{{namespace}}/organizations/current` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrganizationService::getCurrentOrganization` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Organizations/Get%20Current%20Organization.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / List Organizations](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Organizations/List%20Organizations.request.yaml) | `GET {{base_url}}/{{namespace}}/organizations` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrganizationService::listOrganizations` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Organizations/List%20Organizations.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Part](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Parts/Create%20a%20Part.request.yaml) | `POST {{base_url}}/{{namespace}}/parts` | fleetbase-api-key | `Fleetbase\Sdk\Services\PartService::createPart` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Parts/Create%20a%20Part.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Parts/.resources/Create%20a%20Part.resources/examples/Created.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Part](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Parts/Delete%20a%20Part.request.yaml) | `DELETE {{base_url}}/{{namespace}}/parts/{{part_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\PartService::deletePart` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Parts/Delete%20a%20Part.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Parts/.resources/Delete%20a%20Part.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Parts](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Parts/Query%20Parts.request.yaml) | `GET {{base_url}}/{{namespace}}/parts` | fleetbase-api-key | `Fleetbase\Sdk\Services\PartService::queryParts` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Parts/Query%20Parts.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Parts/.resources/Query%20Parts.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Part](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Parts/Retrieve%20a%20Part.request.yaml) | `GET {{base_url}}/{{namespace}}/parts/{{part_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\PartService::retrievePart` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Parts/Retrieve%20a%20Part.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Parts/.resources/Retrieve%20a%20Part.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Part](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Parts/Update%20a%20Part.request.yaml) | `PUT {{base_url}}/{{namespace}}/parts/{{part_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\PartService::updatePart` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Parts/Update%20a%20Part.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Parts/.resources/Update%20a%20Part.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Payload](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Payloads/Create%20a%20Payload.request.yaml) | `POST {{base_url}}/{{namespace}}/payloads` | fleetbase-api-key | `Fleetbase\Sdk\Services\PayloadService::createPayload` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Payloads/Create%20a%20Payload.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Payloads/.resources/Create%20a%20Payload.resources/examples/Create%20a%20Payload%20With%20Multiple%20Waypoints.example.yaml), [201](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Payloads/.resources/Create%20a%20Payload.resources/examples/Create%20a%20Payload.example.yaml), [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Payloads/.resources/Create%20a%20Payload.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Payload](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Payloads/Delete%20a%20Payload.request.yaml) | `DELETE {{base_url}}/{{namespace}}/payloads/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\PayloadService::deletePayload` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Payloads/Delete%20a%20Payload.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Payloads/.resources/Delete%20a%20Payload.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Payloads](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Payloads/Query%20Payloads.request.yaml) | `GET {{base_url}}/{{namespace}}/payloads` | fleetbase-api-key | `Fleetbase\Sdk\Services\PayloadService::queryPayloads` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Payloads/Query%20Payloads.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Payload](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Payloads/Retrieve%20a%20Payload.request.yaml) | `GET {{base_url}}/{{namespace}}/payloads/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\PayloadService::retrievePayload` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Payloads/Retrieve%20a%20Payload.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Payload](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Payloads/Update%20a%20Payload.request.yaml) | `PUT {{base_url}}/{{namespace}}/payloads/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\PayloadService::updatePayload` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Payloads/Update%20a%20Payload.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Payloads/.resources/Update%20a%20Payload.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Place](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Places/Create%20a%20Place.request.yaml) | `POST {{base_url}}/{{namespace}}/places` | fleetbase-api-key | `Fleetbase\Sdk\Services\PlaceService::createPlace` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Places/Create%20a%20Place.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Places/.resources/Create%20a%20Place.resources/examples/Create%20a%20Place%20using%20Coordinates%20Array.example.yaml), [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Places/.resources/Create%20a%20Place.resources/examples/Create%20a%20Place%20using%20Coordinates.example.yaml), [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Places/.resources/Create%20a%20Place.resources/examples/Create%20a%20Place%20using%20GeoJSON%20Point.example.yaml), [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Places/.resources/Create%20a%20Place.resources/examples/Create%20a%20Place%20using%20Street%20Address%20Only.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Place](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Places/Delete%20a%20Place.request.yaml) | `DELETE {{base_url}}/{{namespace}}/places/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\PlaceService::deletePlace` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Places/Delete%20a%20Place.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Places/.resources/Delete%20a%20Place.resources/examples/Delete%20a%20Place.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / List all Places](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Places/List%20all%20Places.request.yaml) | `GET {{base_url}}/{{namespace}}/places` | fleetbase-api-key | `Fleetbase\Sdk\Services\PlaceService::listAllPlaces` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Places/List%20all%20Places.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Places](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Places/Query%20Places.request.yaml) | `GET {{base_url}}/{{namespace}}/places` | fleetbase-api-key | `Fleetbase\Sdk\Services\PlaceService::queryPlaces` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Places/Query%20Places.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Place](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Places/Retrieve%20a%20Place.request.yaml) | `GET {{base_url}}/{{namespace}}/places/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\PlaceService::retrievePlace` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Places/Retrieve%20a%20Place.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Search Places](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Places/Search%20Places.request.yaml) | `GET {{base_url}}/{{namespace}}/places/search` | fleetbase-api-key | `Fleetbase\Sdk\Services\PlaceService::searchPlaces` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Places/Search%20Places.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Place](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Places/Update%20a%20Place.request.yaml) | `PUT {{base_url}}/{{namespace}}/places/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\PlaceService::updatePlace` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Places/Update%20a%20Place.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Places/.resources/Update%20a%20Place.resources/examples/Update%20a%20Place.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Purchase Rate](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Purchase%20Rates/Create%20a%20Purchase%20Rate.request.yaml) | `POST {{base_url}}/{{namespace}}/purchase-rates` | fleetbase-api-key | `Fleetbase\Sdk\Services\PurchaseRateService::createPurchaseRate` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Purchase%20Rates/Create%20a%20Purchase%20Rate.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Purchase%20Rates/.resources/Create%20a%20Purchase%20Rate.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Purchase Rates](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Purchase%20Rates/Query%20Purchase%20Rates.request.yaml) | `GET {{base_url}}/{{namespace}}/purchase-rates` | fleetbase-api-key | `Fleetbase\Sdk\Services\PurchaseRateService::queryPurchaseRates` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Purchase%20Rates/Query%20Purchase%20Rates.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Purchase Rate](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Purchase%20Rates/Retrieve%20a%20Purchase%20Rate.request.yaml) | `GET {{base_url}}/{{namespace}}/purchase-rates/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\PurchaseRateService::retrievePurchaseRate` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Purchase%20Rates/Retrieve%20a%20Purchase%20Rate.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Purchase%20Rates/.resources/Retrieve%20a%20Purchase%20Rate.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Sensor](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Sensors/Create%20a%20Sensor.request.yaml) | `POST {{base_url}}/{{namespace}}/sensors` | fleetbase-api-key | `Fleetbase\Sdk\Services\SensorService::createSensor` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Sensors/Create%20a%20Sensor.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Sensors/.resources/Create%20a%20Sensor.resources/examples/Created.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Sensor](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Sensors/Delete%20a%20Sensor.request.yaml) | `DELETE {{base_url}}/{{namespace}}/sensors/{{sensor_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\SensorService::deleteSensor` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Sensors/Delete%20a%20Sensor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Sensors/.resources/Delete%20a%20Sensor.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Sensors](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Sensors/Query%20Sensors.request.yaml) | `GET {{base_url}}/{{namespace}}/sensors` | fleetbase-api-key | `Fleetbase\Sdk\Services\SensorService::querySensors` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Sensors/Query%20Sensors.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Sensors/.resources/Query%20Sensors.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Sensor](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Sensors/Retrieve%20a%20Sensor.request.yaml) | `GET {{base_url}}/{{namespace}}/sensors/{{sensor_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\SensorService::retrieveSensor` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Sensors/Retrieve%20a%20Sensor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Sensors/.resources/Retrieve%20a%20Sensor.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Sensor](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Sensors/Update%20a%20Sensor.request.yaml) | `PUT {{base_url}}/{{namespace}}/sensors/{{sensor_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\SensorService::updateSensor` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Sensors/Update%20a%20Sensor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Sensors/.resources/Update%20a%20Sensor.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Service Area](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Areas/Create%20a%20Service%20Area.request.yaml) | `POST {{base_url}}/{{namespace}}/service-areas` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceAreaService::createServiceArea` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Areas/Create%20a%20Service%20Area.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Areas/.resources/Create%20a%20Service%20Area.resources/examples/Create%20a%20Service%20Area%20using%20GeoJSON%20Point.example.yaml), [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Areas/.resources/Create%20a%20Service%20Area.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Service Area](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Areas/Delete%20a%20Service%20Area.request.yaml) | `DELETE {{base_url}}/{{namespace}}/service-areas/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceAreaService::deleteServiceArea` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Areas/Delete%20a%20Service%20Area.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Areas/.resources/Delete%20a%20Service%20Area.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Service Areas](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Areas/Query%20Service%20Areas.request.yaml) | `GET {{base_url}}/{{namespace}}/service-areas` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceAreaService::queryServiceAreas` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Areas/Query%20Service%20Areas.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Service Area](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Areas/Retrieve%20a%20Service%20Area.request.yaml) | `GET {{base_url}}/{{namespace}}/service-areas/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceAreaService::retrieveServiceArea` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Areas/Retrieve%20a%20Service%20Area.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Areas/.resources/Retrieve%20a%20Service%20Area.resources/examples/OK.example.yaml), [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Areas/.resources/Retrieve%20a%20Service%20Area.resources/examples/Retrieve%20a%20Service%20Area.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Service Area](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Areas/Update%20a%20Service%20Area.request.yaml) | `PUT {{base_url}}/{{namespace}}/service-areas/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceAreaService::updateServiceArea` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Areas/Update%20a%20Service%20Area.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Areas/.resources/Update%20a%20Service%20Area.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Service Quotes](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Quotes/Query%20Service%20Quotes.request.yaml) | `GET {{base_url}}/{{namespace}}/service-quotes` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceQuoteService::queryServiceQuotes` | query, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Quotes/Query%20Service%20Quotes.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Quotes/.resources/Query%20Service%20Quotes.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Service Quote](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Quotes/Retrieve%20a%20Service%20Quote.request.yaml) | `GET {{base_url}}/{{namespace}}/service-quotes/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceQuoteService::retrieveServiceQuote` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Quotes/Retrieve%20a%20Service%20Quote.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Service Rate](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Rates/Create%20a%20Service%20Rate.request.yaml) | `POST {{base_url}}/{{namespace}}/service-rates` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceRateService::createServiceRate` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Rates/Create%20a%20Service%20Rate.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Rates/.resources/Create%20a%20Service%20Rate.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Service Rate with an Empty Service Area](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Rates/Create%20a%20Service%20Rate%20with%20an%20Empty%20Service%20Area.request.yaml) | `POST {{base_url}}/{{namespace}}/service-rates` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceRateService::createServiceRate` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Rates/Create%20a%20Service%20Rate%20with%20an%20Empty%20Service%20Area.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Service Rate](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Rates/Delete%20a%20Service%20Rate.request.yaml) | `DELETE {{base_url}}/{{namespace}}/service-rates/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceRateService::deleteServiceRate` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Rates/Delete%20a%20Service%20Rate.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Rates/.resources/Delete%20a%20Service%20Rate.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Service Rates](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Rates/Query%20Service%20Rates.request.yaml) | `GET {{base_url}}/{{namespace}}/service-rates` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceRateService::queryServiceRates` | query, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Rates/Query%20Service%20Rates.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Service Rate](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Rates/Retrieve%20a%20Service%20Rate.request.yaml) | `GET {{base_url}}/{{namespace}}/service-rates/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceRateService::retrieveServiceRate` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Rates/Retrieve%20a%20Service%20Rate.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Service Rate](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Rates/Update%20a%20Service%20Rate.request.yaml) | `PUT {{base_url}}/{{namespace}}/service-rates/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ServiceRateService::updateServiceRate` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Rates/Update%20a%20Service%20Rate.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Service%20Rates/.resources/Update%20a%20Service%20Rate.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Tracking Number](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Numbers/Create%20a%20Tracking%20Number.request.yaml) | `POST {{base_url}}/{{namespace}}/tracking-numbers` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrackingNumberService::createTrackingNumber` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Numbers/Create%20a%20Tracking%20Number.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Numbers/.resources/Create%20a%20Tracking%20Number.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Decode Tracking Number QR](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Numbers/Decode%20Tracking%20Number%20QR.request.yaml) | `POST {{base_url}}/{{namespace}}/tracking-numbers/from-qr` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrackingNumberService::decodeTrackingNumberQr` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Numbers/Decode%20Tracking%20Number%20QR.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Tracking Number](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Numbers/Delete%20a%20Tracking%20Number.request.yaml) | `DELETE {{base_url}}/{{namespace}}/tracking-numbers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrackingNumberService::deleteTrackingNumber` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Numbers/Delete%20a%20Tracking%20Number.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Numbers/.resources/Delete%20a%20Tracking%20Number.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Tracking Numbers](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Numbers/Query%20Tracking%20Numbers.request.yaml) | `GET {{base_url}}/{{namespace}}/tracking-numbers` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrackingNumberService::queryTrackingNumbers` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Numbers/Query%20Tracking%20Numbers.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Numbers/.resources/Query%20Tracking%20Numbers.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Tracking Number](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Numbers/Retrieve%20a%20Tracking%20Number.request.yaml) | `GET {{base_url}}/{{namespace}}/tracking-numbers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrackingNumberService::retrieveTrackingNumber` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Numbers/Retrieve%20a%20Tracking%20Number.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Numbers/.resources/Retrieve%20a%20Tracking%20Number.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Tracking Status](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Statuses/Create%20a%20Tracking%20Status.request.yaml) | `POST {{base_url}}/{{namespace}}/tracking-statuses` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrackingStatusService::createTrackingStatus` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Statuses/Create%20a%20Tracking%20Status.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Statuses/.resources/Create%20a%20Tracking%20Status.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Tracking Status](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Statuses/Delete%20a%20Tracking%20Status.request.yaml) | `DELETE {{base_url}}/{{namespace}}/tracking-statuses/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrackingStatusService::deleteTrackingStatus` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Statuses/Delete%20a%20Tracking%20Status.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Statuses/.resources/Delete%20a%20Tracking%20Status.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Tracking Statuses](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Statuses/Query%20Tracking%20Statuses.request.yaml) | `GET {{base_url}}/{{namespace}}/tracking-statuses` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrackingStatusService::queryTrackingStatuses` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Statuses/Query%20Tracking%20Statuses.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Statuses/.resources/Query%20Tracking%20Statuses.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Tracking Status](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Statuses/Retrieve%20a%20Tracking%20Status.request.yaml) | `GET {{base_url}}/{{namespace}}/tracking-statuses/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrackingStatusService::retrieveTrackingStatus` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Statuses/Retrieve%20a%20Tracking%20Status.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Statuses/.resources/Retrieve%20a%20Tracking%20Status.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Tracking Status](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Statuses/Update%20a%20Tracking%20Status.request.yaml) | `PUT {{base_url}}/{{namespace}}/tracking-statuses/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrackingStatusService::updateTrackingStatus` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Statuses/Update%20a%20Tracking%20Status.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Tracking%20Statuses/.resources/Update%20a%20Tracking%20Status.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Attach Device to Trailer](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Attach%20Device%20to%20Trailer.request.yaml) | `POST {{base_url}}/{{namespace}}/devices/:id/attach` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::attachDevice` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Attach%20Device%20to%20Trailer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Attach Equipment to Trailer](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Attach%20Equipment%20to%20Trailer.request.yaml) | `POST {{base_url}}/{{namespace}}/equipment/:id/attach` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::attachEquipment` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Attach%20Equipment%20to%20Trailer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Attach Trailer to Vehicle](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Attach%20Trailer%20to%20Vehicle.request.yaml) | `POST {{base_url}}/{{namespace}}/trailers/:id/attach` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::attachTrailerToVehicle` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Attach%20Trailer%20to%20Vehicle.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create Trailer Device](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Create%20Trailer%20Device.request.yaml) | `POST {{base_url}}/{{namespace}}/devices` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::createDevice` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Create%20Trailer%20Device.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create Trailer Equipment](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Create%20Trailer%20Equipment.request.yaml) | `POST {{base_url}}/{{namespace}}/equipment` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::createEquipment` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Create%20Trailer%20Equipment.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Trailer](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Create%20a%20Trailer.request.yaml) | `POST {{base_url}}/{{namespace}}/trailers` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::createTrailer` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Create%20a%20Trailer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete Trailer Device](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Delete%20Trailer%20Device.request.yaml) | `DELETE {{base_url}}/{{namespace}}/devices/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::deleteDevice` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Delete%20Trailer%20Device.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete Trailer Equipment](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Delete%20Trailer%20Equipment.request.yaml) | `DELETE {{base_url}}/{{namespace}}/equipment/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::deleteEquipment` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Delete%20Trailer%20Equipment.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Trailer](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Delete%20a%20Trailer.request.yaml) | `DELETE {{base_url}}/{{namespace}}/trailers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::deleteTrailer` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Delete%20a%20Trailer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Detach Trailer Attachments](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Detach%20Trailer%20Attachments.request.yaml) | `POST {{base_url}}/{{namespace}}/devices/:id/detach` | fleetbase-api-key | `Fleetbase\Sdk\Services\DeviceService::detachDevice` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Detach%20Trailer%20Attachments.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Detach Trailer Equipment](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Detach%20Trailer%20Equipment.request.yaml) | `POST {{base_url}}/{{namespace}}/equipment/:id/detach` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::detachEquipment` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Detach%20Trailer%20Equipment.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Detach Trailer from Vehicle](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Detach%20Trailer%20from%20Vehicle.request.yaml) | `POST {{base_url}}/{{namespace}}/trailers/:id/detach` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::detachTrailerFromVehicle` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Detach%20Trailer%20from%20Vehicle.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / List Trailer Connections](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/List%20Trailer%20Connections.request.yaml) | `GET {{base_url}}/{{namespace}}/trailers/:id/connections` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::listTrailerConnections` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/List%20Trailer%20Connections.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / List Vehicle Trailers](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/List%20Vehicle%20Trailers.request.yaml) | `GET {{base_url}}/{{namespace}}/vehicles/:id/trailers` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::listVehicleTrailers` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/List%20Vehicle%20Trailers.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Trailers](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Query%20Trailers.request.yaml) | `GET {{base_url}}/{{namespace}}/trailers` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::queryTrailers` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Query%20Trailers.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Reattach Equipment to Vehicle](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Reattach%20Equipment%20to%20Vehicle.request.yaml) | `POST {{base_url}}/{{namespace}}/equipment/:id/attach` | fleetbase-api-key | `Fleetbase\Sdk\Services\EquipmentService::attachEquipment` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Reattach%20Equipment%20to%20Vehicle.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Trailer](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Retrieve%20a%20Trailer.request.yaml) | `GET {{base_url}}/{{namespace}}/trailers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::retrieveTrailer` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Retrieve%20a%20Trailer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Track Trailer](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Track%20Trailer.request.yaml) | `PATCH {{base_url}}/{{namespace}}/trailers/:id/track` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::trackTrailer` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Track%20Trailer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Trailer](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Update%20a%20Trailer.request.yaml) | `PUT {{base_url}}/{{namespace}}/trailers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::updateTrailer` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Update%20a%20Trailer.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Verify Detached Connection History](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Verify%20Detached%20Connection%20History.request.yaml) | `GET {{base_url}}/{{namespace}}/trailers/:id/connections` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::listTrailerConnections` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Verify%20Detached%20Connection%20History.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Verify Trailer Equipment](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Verify%20Trailer%20Equipment.request.yaml) | `GET {{base_url}}/{{namespace}}/trailers/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\TrailerService::retrieveTrailer` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Trailers/Verify%20Trailer%20Equipment.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Vehicle](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/Create%20a%20Vehicle.request.yaml) | `POST {{base_url}}/{{namespace}}/vehicles` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::createVehicle` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/Create%20a%20Vehicle.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/.resources/Create%20a%20Vehicle.resources/examples/Created.example.yaml), [404](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/.resources/Create%20a%20Vehicle.resources/examples/Not%20Found.example.yaml), [422](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/.resources/Create%20a%20Vehicle.resources/examples/Unprocessable%20Entity.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Vehicle](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/Delete%20a%20Vehicle.request.yaml) | `DELETE {{base_url}}/{{namespace}}/vehicles/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::deleteVehicle` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/Delete%20a%20Vehicle.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/.resources/Delete%20a%20Vehicle.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Expand a Vehicle](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/Expand%20a%20Vehicle.request.yaml) | `GET {{base_url}}/{{namespace}}/vehicles/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::retrieveVehicle` | path, query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/Expand%20a%20Vehicle.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/.resources/Expand%20a%20Vehicle.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Expand a Vehicle Scalar](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/Expand%20a%20Vehicle%20Scalar.request.yaml) | `GET {{base_url}}/{{namespace}}/vehicles/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::retrieveVehicle` | path, query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/Expand%20a%20Vehicle%20Scalar.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/.resources/Expand%20a%20Vehicle.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Vehicles](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/Query%20Vehicles.request.yaml) | `GET {{base_url}}/{{namespace}}/vehicles` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::queryVehicles` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/Query%20Vehicles.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/.resources/Query%20Vehicles.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Vehicle](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/Retrieve%20a%20Vehicle.request.yaml) | `GET {{base_url}}/{{namespace}}/vehicles/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::retrieveVehicle` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/Retrieve%20a%20Vehicle.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/.resources/Retrieve%20a%20Vehicle.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Track Vehicle](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/Track%20Vehicle.request.yaml) | `PATCH {{base_url}}/{{namespace}}/vehicles/:id/track` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::trackVehicle` | path, text body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/Track%20Vehicle.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Vehicle](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/Update%20a%20Vehicle.request.yaml) | `PUT {{base_url}}/{{namespace}}/vehicles/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\VehicleService::updateVehicle` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/Update%20a%20Vehicle.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vehicles/.resources/Update%20a%20Vehicle.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Vendor](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vendors/Create%20a%20Vendor.request.yaml) | `POST {{base_url}}/{{namespace}}/vendors` | fleetbase-api-key | `Fleetbase\Sdk\Services\VendorService::createVendor` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vendors/Create%20a%20Vendor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vendors/.resources/Create%20a%20Vendor.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Vendor](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vendors/Delete%20a%20Vendor.request.yaml) | `DELETE {{base_url}}/{{namespace}}/vendors/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\VendorService::deleteVendor` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vendors/Delete%20a%20Vendor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vendors/.resources/Delete%20a%20Vendor.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Vendors](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vendors/Query%20Vendors.request.yaml) | `GET {{base_url}}/{{namespace}}/vendors` | fleetbase-api-key | `Fleetbase\Sdk\Services\VendorService::queryVendors` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vendors/Query%20Vendors.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vendors/.resources/Query%20Vendors.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Vendor](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vendors/Retrieve%20a%20Vendor.request.yaml) | `GET {{base_url}}/{{namespace}}/vendors/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\VendorService::retrieveVendor` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vendors/Retrieve%20a%20Vendor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vendors/.resources/Retrieve%20a%20Vendor.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Vendor](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vendors/Update%20a%20Vendor.request.yaml) | `PUT {{base_url}}/{{namespace}}/vendors/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\VendorService::updateVendor` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vendors/Update%20a%20Vendor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Vendors/.resources/Update%20a%20Vendor.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Work Order](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Work%20Orders/Create%20a%20Work%20Order.request.yaml) | `POST {{base_url}}/{{namespace}}/work-orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\WorkOrderService::createWorkOrder` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Work%20Orders/Create%20a%20Work%20Order.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Work%20Orders/.resources/Create%20a%20Work%20Order.resources/examples/Created.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Work Order](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Work%20Orders/Delete%20a%20Work%20Order.request.yaml) | `DELETE {{base_url}}/{{namespace}}/work-orders/{{work_order_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\WorkOrderService::deleteWorkOrder` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Work%20Orders/Delete%20a%20Work%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Work%20Orders/.resources/Delete%20a%20Work%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Work Orders](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Work%20Orders/Query%20Work%20Orders.request.yaml) | `GET {{base_url}}/{{namespace}}/work-orders` | fleetbase-api-key | `Fleetbase\Sdk\Services\WorkOrderService::queryWorkOrders` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Work%20Orders/Query%20Work%20Orders.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Work%20Orders/.resources/Query%20Work%20Orders.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a Work Order](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Work%20Orders/Retrieve%20a%20Work%20Order.request.yaml) | `GET {{base_url}}/{{namespace}}/work-orders/{{work_order_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\WorkOrderService::retrieveWorkOrder` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Work%20Orders/Retrieve%20a%20Work%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Work%20Orders/.resources/Retrieve%20a%20Work%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Send Work Order](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Work%20Orders/Send%20Work%20Order.request.yaml) | `POST {{base_url}}/{{namespace}}/work-orders/{{work_order_id}}/send` | fleetbase-api-key | `Fleetbase\Sdk\Services\WorkOrderService::sendWorkOrder` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Work%20Orders/Send%20Work%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Work%20Orders/.resources/Send%20Work%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Work Order](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Work%20Orders/Update%20a%20Work%20Order.request.yaml) | `PUT {{base_url}}/{{namespace}}/work-orders/{{work_order_id}}` | fleetbase-api-key | `Fleetbase\Sdk\Services\WorkOrderService::updateWorkOrder` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Work%20Orders/Update%20a%20Work%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Work%20Orders/.resources/Update%20a%20Work%20Order.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Create a Zone](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Zones/Create%20a%20Zone.request.yaml) | `POST {{base_url}}/{{namespace}}/zones` | fleetbase-api-key | `Fleetbase\Sdk\Services\ZoneService::createZone` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Zones/Create%20a%20Zone.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Zones/.resources/Create%20a%20Zone.resources/examples/Create%20a%20Zone.example.yaml), [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Zones/.resources/Create%20a%20Zone.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Delete a Zone](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Zones/Delete%20a%20Zone.request.yaml) | `DELETE {{base_url}}/{{namespace}}/zones/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ZoneService::deleteZone` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Zones/Delete%20a%20Zone.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Zones/.resources/Delete%20a%20Zone.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Query Zones](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Zones/Query%20Zones.request.yaml) | `GET {{base_url}}/{{namespace}}/zones` | fleetbase-api-key | `Fleetbase\Sdk\Services\ZoneService::queryZones` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Zones/Query%20Zones.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Zones/.resources/Query%20Zones.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Retrieve a zone](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Zones/Retrieve%20a%20zone.request.yaml) | `GET {{base_url}}/{{namespace}}/zones/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ZoneService::retrieveZone` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Zones/Retrieve%20a%20zone.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Zones/.resources/Retrieve%20a%20zone.resources/examples/Delete%20a%20Zone.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase API / Update a Zone](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Zones/Update%20a%20Zone.request.yaml) | `PUT {{base_url}}/{{namespace}}/zones/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ZoneService::updateZone` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Zones/Update%20a%20Zone.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20API/Zones/.resources/Update%20a%20Zone.resources/examples/OK.example.yaml) | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Add Participant](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Add%20Participant.request.yaml) | `POST {{base_url}}/{{namespace}}/chat-channels/:id/add-participant` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::addParticipant` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Add%20Participant.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Create Chat Channel](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Create%20Chat%20Channel.request.yaml) | `POST {{base_url}}/{{namespace}}/chat-channels` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::createChatChannel` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Create%20Chat%20Channel.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Create Read Receipt](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Create%20Read%20Receipt.request.yaml) | `POST {{base_url}}/{{namespace}}/chat-channels/read-message/:chatMessageId` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::createReadReceipt` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Create%20Read%20Receipt.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Delete Chat Channel](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Delete%20Chat%20Channel.request.yaml) | `DELETE {{base_url}}/{{namespace}}/chat-channels/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::deleteChatChannel` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Delete%20Chat%20Channel.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Delete Message](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Delete%20Message.request.yaml) | `DELETE {{base_url}}/{{namespace}}/chat-channels/delete-message/:chatMessageId` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::deleteMessage` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Delete%20Message.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / List Available Participants](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/List%20Available%20Participants.request.yaml) | `GET {{base_url}}/{{namespace}}/chat-channels/available-participants` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::listAvailableParticipants` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/List%20Available%20Participants.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Query Chat Channels](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Query%20Chat%20Channels.request.yaml) | `GET {{base_url}}/{{namespace}}/chat-channels` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::queryChatChannels` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Query%20Chat%20Channels.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Remove Participant](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Remove%20Participant.request.yaml) | `DELETE {{base_url}}/{{namespace}}/chat-channels/remove-participant/:participantId` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::removeParticipant` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Remove%20Participant.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Retrieve Chat Channel](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Retrieve%20Chat%20Channel.request.yaml) | `GET {{base_url}}/{{namespace}}/chat-channels/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::retrieveChatChannel` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Retrieve%20Chat%20Channel.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Send Message](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Send%20Message.request.yaml) | `POST {{base_url}}/{{namespace}}/chat-channels/:id/send-message` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::sendMessage` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Send%20Message.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Update Chat Channel](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Update%20Chat%20Channel.request.yaml) | `PUT {{base_url}}/{{namespace}}/chat-channels/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\ChatChannelService::updateChatChannel` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Chat%20Channels/Update%20Chat%20Channel.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Create Comment](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Comments/Create%20Comment.request.yaml) | `POST {{base_url}}/{{namespace}}/comments` | fleetbase-api-key | `Fleetbase\Sdk\Services\CommentService::createComment` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Comments/Create%20Comment.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Delete Comment](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Comments/Delete%20Comment.request.yaml) | `DELETE {{base_url}}/{{namespace}}/comments/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\CommentService::deleteComment` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Comments/Delete%20Comment.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Query Comments](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Comments/Query%20Comments.request.yaml) | `GET {{base_url}}/{{namespace}}/comments` | fleetbase-api-key | `Fleetbase\Sdk\Services\CommentService::queryComments` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Comments/Query%20Comments.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Retrieve Comment](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Comments/Retrieve%20Comment.request.yaml) | `GET {{base_url}}/{{namespace}}/comments/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\CommentService::retrieveComment` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Comments/Retrieve%20Comment.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Update Comment](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Comments/Update%20Comment.request.yaml) | `PUT {{base_url}}/{{namespace}}/comments/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\CommentService::updateComment` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Comments/Update%20Comment.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Delete a File](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Files/Delete%20a%20File.request.yaml) | `DELETE {{base_url}}/{{namespace}}/files/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\FileService::deleteFile` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Files/Delete%20a%20File.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Download File](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Files/Download%20File.request.yaml) | `GET {{base_url}}/{{namespace}}/files/:id/download` | fleetbase-api-key | `Fleetbase\Sdk\Services\FileService::downloadFile` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Files/Download%20File.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Query Files](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Files/Query%20Files.request.yaml) | `GET {{base_url}}/{{namespace}}/files` | fleetbase-api-key | `Fleetbase\Sdk\Services\FileService::queryFiles` | query ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Files/Query%20Files.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Retrieve a File](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Files/Retrieve%20a%20File.request.yaml) | `GET {{base_url}}/{{namespace}}/files/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\FileService::retrieveFile` | path ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Files/Retrieve%20a%20File.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Update File](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Files/Update%20File.request.yaml) | `PUT {{base_url}}/{{namespace}}/files/:id` | fleetbase-api-key | `Fleetbase\Sdk\Services\FileService::updateFile` | path, json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Files/Update%20File.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Upload Base64 File](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Files/Upload%20Base64%20File.request.yaml) | `POST {{base_url}}/{{namespace}}/files/base64` | fleetbase-api-key | `Fleetbase\Sdk\Services\FileService::uploadBase64File` | json body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Files/Upload%20Base64%20File.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Upload File](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Files/Upload%20File.request.yaml) | `POST {{base_url}}/{{namespace}}/files` | fleetbase-api-key | `Fleetbase\Sdk\Services\FileService::uploadFile` | formdata body ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Files/Upload%20File.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | +| [Fleetbase Core API / Get Current Organization](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Organizations/Get%20Current%20Organization.request.yaml) | `GET {{base_url}}/{{namespace}}/organizations/current` | fleetbase-api-key | `Fleetbase\Sdk\Services\OrganizationService::getCurrentOrganization` | path/method only ([source](https://github.com/fleetbase/postman/blob/822b867218f174bad18a789d4fd6791ccfd2af34/postman/collections/Fleetbase%20Core%20API/Organizations/Get%20Current%20Organization.request.yaml)) | No official example | [HTTP status mapping](../tests/HttpClientTest.php) | [endpoint fixture](../tests/Contract/EndpointContractTest.php) | Official collection through SDK bridge | complete | diff --git a/docs/api-examples.md b/docs/api-examples.md index 94e9e8d..9b5fef6 100644 --- a/docs/api-examples.md +++ b/docs/api-examples.md @@ -1483,7 +1483,7 @@ $result = $fleetbase->inspectionForms->listInspectionForms( ### List Inspections -Lists filed inspections, newest first. Narrow by `driver` or `vehicle`, and by `type`, `result` and `status`, each as one value or a comma separated list. Defaults to a recent window rather than the organisation's whole history; use `limit` to widen it. Each row carries the same shape Retrieve an Inspection answers with: the answers as `custom_field_values`, the `item_results` derived from them, and the `files` filed with the inspection. +Lists filed inspections, newest first. Narrow by `driver` or `vehicle`, and by `type`, `result` and `status`, each as one value or a comma separated list. Defaults to a recent window rather than the organisation's whole history; use `limit` to widen it. Each row carries the same shape Retrieve an Inspection answers with: the `answers`, the `item_results` derived from them, and the `files` filed with the inspection. `GET {{base_url}}/{{namespace}}/inspections` @@ -1497,7 +1497,7 @@ $result = $fleetbase->inspections->listInspections( ### List Vehicle Inspections -Lists a vehicle's inspection history, newest first — the same inspections List Inspections answers with `vehicle`, addressed the way the driver app holds them, from the vehicle's screen. Narrow by `type`, `result` and `status`, each as one value or a comma separated list. Each row carries the answers as `custom_field_values`, the `item_results` derived from them, and the `files` filed with the inspection. +Lists a vehicle's inspection history, newest first — the same inspections List Inspections answers with `vehicle`, addressed the way the driver app holds them, from the vehicle's screen. Narrow by `type`, `result` and `status`, each as one value or a comma separated list. Each row carries the `answers`, the `item_results` derived from them, and the `files` filed with the inspection. `GET {{base_url}}/{{namespace}}/vehicles/:id/inspections` @@ -1507,7 +1507,7 @@ $result = $fleetbase->vehicles->listVehicleInspections($vehicleId); ### Retrieve an Inspection -Retrieves one inspection with everything it produced: `custom_field_values` — the driver's answers, each beside the field's `name`, `label` and `type`, with every photo and signature resolved to `{ id, url, filename, content_type }` — the `item_results` derived from the `pass-fail` answers, the `files` filed with it, and the `issue` and `work_order` raised from any failed items. +Retrieves one inspection with everything it produced: the `answers` — one per field the driver answered, each naming the `field` it answers beside that field's `name`, `label` and `type`, with every photo and signature resolved to `{ id, url, filename, content_type }` — the `item_results` derived from the `pass-fail` answers, the `files` filed with it, and the `issue` and `work_order` raised from any failed items. `GET {{base_url}}/{{namespace}}/inspections/:id` @@ -1527,7 +1527,7 @@ $result = $fleetbase->inspectionForms->retrieveInspectionForm($inspectionFormId) ### Submit an Inspection -Files an inspection against a published form, as the driver app does at the end of a DVIR. A form built from typed fields is answered with `custom_field_values`: one entry per field the driver answered, naming the field by the `id` the form read gave it, with a `value_type` and a `value`. A `pass-fail` answer is an object — `passed`, `not_applicable`, `severity`, `comments`, `photos` and `unsafe`; a meter is a number, a signature or a photo is base64. The server stores every photo and signature as a file and answers with `file:` references resolved, and mirrors each `pass-fail` answer into an `item_results` row, which is what issues, work orders and the vehicle's history are built from. The first cut's flat `item_results` body is still accepted, for the tokenised public link and for older app builds. When both arrive the field values win and the duplicated results are ignored — which is exactly what the app sends, so one body works against either cut. A failed `pass-fail` answer must carry whatever its field insists on: a form that sets `require_comment_on_fail` or `require_photo_on_fail` refuses the whole submission with a 422 rather than filing half an inspection. Without `vehicle` the inspection is recorded against the vehicle the driver is currently assigned to. Without `started_at` the inspection is taken to have started when it was filed. The app queues a submit while offline and replays it later. Send an `Idempotency-Key` header with each attempt: a replay with a key already used by the same driver answers with the inspection the first attempt filed rather than filing a second one. The response is the inspection with its `custom_field_values`, `item_results` and `files`, and the `issue` and `work_order` the form's settings raised from any failed items. +Files an inspection against a published form, as the driver app does at the end of a DVIR. A form built from typed fields is answered with `answers`: one entry per field the driver answered, naming the `field` by the `id` the form read gave it, with a `value` and, optionally, a `value_type`. `custom_field_values` is the previous name for this and is still accepted. A `pass-fail` answer is an object — `passed`, `not_applicable`, `severity`, `comments`, `photos` and `unsafe`; a meter is a number, a signature or a photo is base64. The server stores every photo and signature as a file and answers with `file:` references resolved, and mirrors each `pass-fail` answer into an `item_results` row, which is what issues, work orders and the vehicle's history are built from. The first cut's flat `item_results` body is still accepted, for the tokenised public link and for older app builds. It is the older shape: an entry per checklist item rather than per field, naming the item by an `item_key` of its own instead of naming a field of the form. Send `answers` unless you are targeting an older server. This request deliberately sends both, which is what the app does: when both arrive the answers win and the duplicated results are ignored, so one body works against either cut. A failed `pass-fail` answer must carry whatever its field insists on: a form that sets `require_comment_on_fail` or `require_photo_on_fail` refuses the whole submission with a 422 rather than filing half an inspection. Without `vehicle` the inspection is recorded against the vehicle the driver is currently assigned to. Without `started_at` the inspection is taken to have started when it was filed. The app queues a submit while offline and replays it later. Send an `Idempotency-Key` header with each attempt: a replay with a key already used by the same driver answers with the inspection the first attempt filed rather than filing a second one. The response is the inspection with its `answers`, `item_results` and `files`, and the `issue` and `work_order` the form's settings raised from any failed items. `POST {{base_url}}/{{namespace}}/inspections` @@ -1544,7 +1544,27 @@ $result = $fleetbase->inspections->submitInspection( 'latitude' => 1.3521, 'longitude' => 103.8198, ], - 'custom_field_values' => [], + 'answers' => [ + [ + 'field' => 'inspection_pass_fail_field_id-fixture', + 'value_type' => 'object', + 'value' => [ + 'passed' => false, + 'not_applicable' => false, + 'severity' => 'critical', + 'comments' => 'Pedal is soft.', + 'photos' => [ + 'proof_photo_base64-fixture', + ], + 'unsafe' => true, + ], + ], + [ + 'field' => 'inspection_number_field_id-fixture', + 'value_type' => 'number', + 'value' => 120400, + ], + ], 'item_results' => [ [ 'item_key' => 'brakes', diff --git a/docs/releases/1.4.0.md b/docs/releases/1.4.0.md index 52aa45d..4d77290 100644 --- a/docs/releases/1.4.0.md +++ b/docs/releases/1.4.0.md @@ -6,7 +6,7 @@ Adds all six driver-facing inspection endpoints from the official Postman contra - `inspections->submitInspection($data, $requestOptions)`, `listInspections($filters)`, and `retrieveInspection($id)`. - `vehicles->listVehicleInspections($vehicleId, $filters)`. -Submission accepts typed `custom_field_values` and the legacy `item_results` payload without rewriting them. Pass `Idempotency-Key` in request-option headers and reuse it for replays of the same submission. Existing positional/direct calls, legacy envelopes, resource helpers, PHP 7.4/8.x compatibility, and the AGPL-3.0-or-later license are retained. +Submission accepts typed `answers` and the legacy `item_results` payload without rewriting them. An answer names the field it answers with `field`, using the id the form read hands out. The earlier spellings `custom_field_values` and `custom_field` remain accepted by the API, and the SDK passes either through unchanged. Pass `Idempotency-Key` in request-option headers and reuse it for replays of the same submission. Existing positional/direct calls, legacy envelopes, resource helpers, PHP 7.4/8.x compatibility, and the AGPL-3.0-or-later license are retained. The contract covers 270 requests. CI locks the published-form seed and overlays the exact Fleet-Ops inspection implementation before seeding and running the SDK bridge. The upstream implementation is currently Fleet-Ops PR #319; release approval must confirm its API is available in the intended Fleetbase deployment. A passing overlay run proves the locked implementation, not availability in every published image. diff --git a/docs/releases/1.4.1.md b/docs/releases/1.4.1.md new file mode 100644 index 0000000..d8ea66b --- /dev/null +++ b/docs/releases/1.4.1.md @@ -0,0 +1,11 @@ +# Fleetbase PHP SDK 1.4.1 + +Tracks the inspection API's renamed submission answers, which shipped upstream after 1.4.0 was published. + +A submission's answers were `custom_field_values`, each naming its field with `custom_field`. The API calls them `answers` and `field` now — that is what it documents and what it returns — and a field is named by a public id rather than a bare uuid. The earlier spellings remain accepted on submit, so this is additive and no existing integration breaks. + +The SDK forwards a submission body verbatim, so no `src/` file names any of these keys and none needed rewriting. What changed is the locked contract and everything generated from it, together with the README example, the submission test's payload and response fixtures, and this note. The generated submit example previously sent an empty `custom_field_values` beside a populated flat `item_results` block — the only worked example in the reference was the legacy shape; it now answers the way the API documents. + +Pins: `postman` at `822b867` (the collection rename and its response examples, both merged) and `fleetops` at `refs/pull/319/head` @ `9f2ffe98`. As in 1.4.0, the upstream implementation is still Fleet-Ops PR #319; release approval must confirm its API is available in the intended deployment. A passing overlay run proves the locked implementation, not availability in every published image. + +Public methods, positional and direct call forms, legacy envelopes, resource helpers, PHP 7.4/8.x compatibility, and the `AGPL-3.0-or-later` license are unchanged from 1.4.0. diff --git a/tests/Fleetbase/InspectionTest.php b/tests/Fleetbase/InspectionTest.php index f6afa9b..bd1c978 100644 --- a/tests/Fleetbase/InspectionTest.php +++ b/tests/Fleetbase/InspectionTest.php @@ -21,14 +21,14 @@ public function testSubmitPreservesTypedAnswersAndCallerIdempotencyKey(): void $payload = [ 'inspection_form' => 'iform_test', 'driver' => 'driver_test', - 'custom_field_values' => [ - ['custom_field' => 'field_brakes', 'value_type' => 'object', 'value' => ['passed' => false, 'comments' => 'Soft pedal', 'photos' => ['data:image/png;base64,test']]], - ['custom_field' => 'field_meter', 'value_type' => 'number', 'value' => 120400], + 'answers' => [ + ['field' => 'custom_field_brakes0001', 'value_type' => 'object', 'value' => ['passed' => false, 'comments' => 'Soft pedal', 'photos' => ['data:image/png;base64,test']]], + ['field' => 'custom_field_meter00001', 'value_type' => 'number', 'value' => 120400], ], ]; $client = $this->mockHttpClient([ - new Response(201, [], '{"id":"inspection_test","custom_field_values":[],"item_results":[]}'), - new Response(200, [], '{"id":"inspection_test","custom_field_values":[],"item_results":[]}'), + new Response(201, [], '{"id":"inspection_test","answers":[],"item_results":[]}'), + new Response(200, [], '{"id":"inspection_test","answers":[],"item_results":[]}'), ]); $service = new InspectionService($client); $options = ['headers' => ['Idempotency-Key' => 'inspection-offline-123']];