From 1582577b9436450cc67ddd51826804fee4b70dda Mon Sep 17 00:00:00 2001 From: "Ronald A. Richardson" Date: Sat, 12 Sep 2026 20:31:23 +0800 Subject: [PATCH 1/3] feat: add inspections API support for 1.4.0 --- .github/workflows/contract.yml | 38 +- CHANGELOG.md | 15 +- README.md | 26 +- composer.json | 3 +- contracts/contract-lock.json | 20 +- contracts/php-sdk-examples.json | 62 +- contracts/postman-manifest.json | 357 +- contracts/public-api-1.3.0.json | 11551 ++++++++++++++++ contracts/sdk-variants.json | 3 + contracts/service-map.json | 14 +- docs/api-coverage.md | 536 +- docs/api-examples.md | 105 +- docs/release-checklist.md | 19 +- docs/releases/1.4.0.md | 13 + src/Fleetbase.php | 20 + src/Resources/Inspection.php | 18 + src/Resources/InspectionForm.php | 18 + .../InspectionFormServiceEndpoints.php | 40 + .../Concerns/InspectionServiceEndpoints.php | 52 + .../Concerns/VehicleServiceEndpoints.php | 13 + src/Services/InspectionFormService.php | 27 + src/Services/InspectionService.php | 27 + tests/Fleetbase/FleetbaseTest.php | 2 + tests/Fleetbase/InspectionTest.php | 91 + 24 files changed, 12715 insertions(+), 355 deletions(-) create mode 100644 contracts/public-api-1.3.0.json create mode 100644 docs/releases/1.4.0.md create mode 100644 src/Resources/Inspection.php create mode 100644 src/Resources/InspectionForm.php create mode 100644 src/Services/Concerns/InspectionFormServiceEndpoints.php create mode 100644 src/Services/Concerns/InspectionServiceEndpoints.php create mode 100644 src/Services/InspectionFormService.php create mode 100644 src/Services/InspectionService.php create mode 100644 tests/Fleetbase/InspectionTest.php diff --git a/.github/workflows/contract.yml b/.github/workflows/contract.yml index 6dad3df..860b8d6 100644 --- a/.github/workflows/contract.yml +++ b/.github/workflows/contract.yml @@ -26,6 +26,7 @@ jobs: stack_ref: ${{ steps.locked.outputs.stack_ref }} core_api_ref: ${{ steps.locked.outputs.core_api_ref }} fleetops_ref: ${{ steps.locked.outputs.fleetops_ref }} + fleetops_source_ref: ${{ steps.locked.outputs.fleetops_source_ref }} steps: - id: check env: @@ -54,6 +55,7 @@ jobs: echo "stack_ref=$(read_lock '.sources.fleetbase_stack.commit')" echo "core_api_ref=$(read_lock '.sources.fleetbase_stack.core_api_submodule')" echo "fleetops_ref=$(read_lock '.sources.fleetbase_stack.fleetops_submodule')" + echo "fleetops_source_ref=$(read_lock '.sources.fleetops.commit')" } >> "$GITHUB_OUTPUT" contract: @@ -70,6 +72,7 @@ jobs: POSTMAN_REF: ${{ needs.gate.outputs.postman_ref }} CORE_API_REF: ${{ needs.gate.outputs.core_api_ref }} FLEETOPS_REF: ${{ needs.gate.outputs.fleetops_ref }} + FLEETOPS_SOURCE_REF: ${{ needs.gate.outputs.fleetops_source_ref }} SOURCE_TOKEN: ${{ secrets._GITHUB_AUTH_TOKEN || github.token }} POSTMAN_API_KEY: ${{ secrets.POSTMAN_API_KEY }} steps: @@ -135,13 +138,45 @@ jobs: set -uo pipefail for attempt in $(seq 1 30); do if curl --fail --silent --max-time 5 http://localhost:8000/health | grep -q '"status"'; then - echo "API is healthy." + echo "API is healthy (attempt $attempt)." exit 0 fi sleep 5 done echo "::error::API did not become healthy." exit 1 + # Mirror the canonical api-contract.yml overlay sequence before seeding: + # replace package, rebuild classmap, migrate, clear caches, reload Octane. + - name: Checkout locked Fleet-Ops source for overlay + if: env.FLEETOPS_SOURCE_REF != env.FLEETOPS_REF + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + with: + repository: fleetbase/fleetops + ref: ${{ env.FLEETOPS_SOURCE_REF }} + path: .fleetops-overlay + persist-credentials: false + - name: Overlay locked Fleet-Ops implementation + if: env.FLEETOPS_SOURCE_REF != env.FLEETOPS_REF + run: | + set -euo pipefail + test "$(git -C .fleetops-overlay rev-parse HEAD)" = "$FLEETOPS_SOURCE_REF" + test -f .fleetops-overlay/composer.json + # The target is one package inside this runner's disposable container. + docker compose exec -T application sh -c 'rm -rf /fleetbase/api/vendor/fleetbase/fleetops-api && mkdir -p /fleetbase/api/vendor/fleetbase/fleetops-api' + tar --exclude=.git -C .fleetops-overlay -cf - . | docker compose exec -T application sh -c 'tar -C /fleetbase/api/vendor/fleetbase/fleetops-api -xf -' + docker compose exec -T application chown -R www-data:www-data /fleetbase/api/vendor/fleetbase/fleetops-api + docker compose exec -T application su www-data -s /bin/sh -c 'cd /fleetbase/api && composer dump-autoload --optimize --no-scripts' + docker compose exec -T application su www-data -s /bin/sh -c 'cd /fleetbase/api && php artisan optimize:clear && php artisan migrate --force && php artisan octane:reload' + echo "Fleet-Ops source under test: $FLEETOPS_SOURCE_REF" >> "$GITHUB_STEP_SUMMARY" + for attempt in $(seq 1 20); do + if curl --fail --silent --max-time 5 http://localhost:8000/health | grep -q '"status"'; then + echo "API healthy after overlay (attempt $attempt)." + exit 0 + fi + sleep 3 + done + echo "::error::API did not recover after the locked Fleet-Ops overlay." + exit 1 - name: Mint a fresh SDK smoke credential env: CI_CUSTOMER_IDENTITY: ci-customer@fleetbase.local @@ -196,6 +231,7 @@ jobs: echo $! > .sdk/build/live-contract/bridge.pid for attempt in $(seq 1 20); do if curl --fail --silent http://127.0.0.1:9000/__sdk_contract_health | grep -q '"status":"ok"'; then + echo "SDK bridge is healthy (attempt $attempt)." exit 0 fi sleep 1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f6210d..707e1ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [1.4.0] - 2026-09-12 + +### Added + +- Inspection Forms and Inspections services, including form reads, typed-answer submission, inspection retrieval/listing, and vehicle inspection history. +- Caller-supplied idempotency headers and direct-array inspection examples, with compatibility preserved against 1.3.0 and earlier baselines. + +### Changed + +- Updated the locked Postman inventory to all 270 requests and the disposable contract seed to include published inspection forms. +- Test the explicitly locked Fleet-Ops implementation using the canonical package-overlay, migration, cache-clear, and worker-reload sequence before fixture seeding. + ## [1.3.0] - 2026-09-10 ### Added @@ -107,7 +119,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Latest baseline whose public API is explicitly preserved by 1.1.0. -[Unreleased]: https://github.com/fleetbase/fleetbase-php/compare/1.3.0...HEAD +[Unreleased]: https://github.com/fleetbase/fleetbase-php/compare/1.4.0...HEAD +[1.4.0]: https://github.com/fleetbase/fleetbase-php/compare/1.3.0...1.4.0 [1.3.0]: https://github.com/fleetbase/fleetbase-php/compare/1.2.0...1.3.0 [1.2.0]: https://github.com/fleetbase/fleetbase-php/compare/1.1.2...1.2.0 [1.1.2]: https://github.com/fleetbase/fleetbase-php/compare/1.1.1...1.1.2 diff --git a/README.md b/README.md index a6275f9..59daa35 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ [![Downloads](https://img.shields.io/packagist/dt/fleetbase/fleetbase-php.svg)](https://packagist.org/packages/fleetbase/fleetbase-php) [![License: AGPL-3.0-or-later](https://img.shields.io/badge/license-AGPL--3.0--or--later-blue.svg)](LICENSE) -The official PHP client for the [Fleetbase API](https://fleetbase.io/docs/api). It supports Fleetbase Cloud and self-hosted installations, covers all 264 locked Fleetbase and Core API requests, and retains the public API used by earlier SDK releases. +The official PHP client for the [Fleetbase API](https://fleetbase.io/docs/api). It supports Fleetbase Cloud and self-hosted installations, covers all 270 locked Fleetbase and Core API requests, and retains the public API used by earlier SDK releases. Version 1.1.0 changed the license to `AGPL-3.0-or-later`. Published 1.0.x tags remain under the MIT license shipped with those releases. Review the [migration guide](docs/migration-guide.md) before upgrading. @@ -54,7 +54,7 @@ echo $place->id; Never commit an API key. Load it from your runtime secret manager or environment. -Existing property access remains supported (`$fleetbase->orders`). Explicit accessors such as `$fleetbase->orders()` are available for static analysis and dependency injection. Browse [all 264 generated PHP examples](docs/api-examples.md); CI executes each exact snippet against a hermetic transport. +Existing property access remains supported (`$fleetbase->orders`). Explicit accessors such as `$fleetbase->orders()` are available for static analysis and dependency injection. Browse [all 270 generated PHP examples](docs/api-examples.md); CI executes each exact snippet against a hermetic transport. ### Endpoint arguments @@ -107,6 +107,28 @@ $fleetbase->trailers->detachTrailerFromVehicle($trailer->id); Attach devices and equipment through their own services, using `attachDevice($deviceId, $data)` and `attachEquipment($equipmentId, $data)`. Standard trailer CRUD also supports `createTrailer`, `retrieveTrailer`, `queryTrailers`, `updateTrailer`, and `deleteTrailer`. +### Inspections + +Version 1.4.0 adds the driver-facing inspection API: + +```php +$forms = $fleetbase->inspectionForms->listInspectionForms(['vehicle' => $vehicleId]); +$form = $fleetbase->inspectionForms->retrieveInspectionForm($formId); +$inspection = $fleetbase->inspections->submitInspection([ + 'inspection_form' => $formId, + 'driver' => $driverId, + 'vehicle' => $vehicleId, + 'custom_field_values' => [ + ['custom_field' => $fieldId, 'value_type' => 'object', 'value' => ['passed' => true]], + ], +], ['headers' => ['Idempotency-Key' => $submissionKey]]); +$inspection = $fleetbase->inspections->retrieveInspection($inspectionId); +$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. + ## Configuration The second constructor argument accepts client configuration. The third legacy argument retains the debug flag without printing requests or credentials. diff --git a/composer.json b/composer.json index 08d1b76..099839f 100644 --- a/composer.json +++ b/composer.json @@ -73,7 +73,8 @@ "@php tools/check-api-compatibility.php --baseline=contracts/public-api-1.0.2.json --current=build/contracts/public-api-current.json", "@php tools/check-api-compatibility.php --baseline=contracts/public-api-1.0.3.json --current=build/contracts/public-api-current.json", "@php tools/check-api-compatibility.php --baseline=contracts/public-api-1.1.0.json --current=build/contracts/public-api-current.json", - "@php tools/check-api-compatibility.php --baseline=contracts/public-api-1.2.0.json --current=build/contracts/public-api-current.json" + "@php tools/check-api-compatibility.php --baseline=contracts/public-api-1.2.0.json --current=build/contracts/public-api-current.json", + "@php tools/check-api-compatibility.php --baseline=contracts/public-api-1.3.0.json --current=build/contracts/public-api-current.json" ], "check": [ "@lint", diff --git a/contracts/contract-lock.json b/contracts/contract-lock.json index d6be823..3956e7c 100644 --- a/contracts/contract-lock.json +++ b/contracts/contract-lock.json @@ -1,6 +1,6 @@ { "schema_version": 1, - "generated_at": "2026-09-09", + "generated_at": "2026-09-12", "sdk_baselines": { "required_compatibility": { "version": "1.0.2", @@ -8,29 +8,29 @@ "commit": "569fe88e0359d567f30588820243d1d69ab418ec" }, "latest_published": { - "version": "1.2.0", - "git_ref": "1.2.0", - "commit": "3e8cf88e080936b5cf3eb8c13dd2f88d040c75bd" + "version": "1.3.0", + "git_ref": "1.3.0", + "commit": "3a9467b306d5fcd93d6adb6b02dfaf5ad4cd0158" } }, "sources": { "fleetbase_stack": { "repository": "https://github.com/fleetbase/fleetbase", "ref": "origin/main", - "commit": "2612278517a56e5389e98c8fd08648e583c87226", + "commit": "a5dea4be5f048c8543e69209ada166ce2efd0870", "core_api_submodule": "4c763ce293d2e794f9260aca11fb4b52413a74ac", "fleetops_submodule": "2980fb39cd4ff58442d287907849efea3a2805ba" }, "postman": { "repository": "https://github.com/fleetbase/postman", "ref": "origin/main", - "commit": "7fe06b7c5e415a9aa292869e9037910896b049ad", + "commit": "d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb", "scope": [ "Fleetbase API", "Fleetbase Core API" ], - "expected_requests": 264, - "expected_groups": 37 + "expected_requests": 270, + "expected_groups": 38 }, "core_api": { "repository": "https://github.com/fleetbase/core-api", @@ -39,8 +39,8 @@ }, "fleetops": { "repository": "https://github.com/fleetbase/fleetops", - "ref": "origin/main", - "commit": "2980fb39cd4ff58442d287907849efea3a2805ba" + "ref": "refs/pull/319/head", + "commit": "0d11583d0484ad04761ca0cd6a1025cec4aed91c" } } } diff --git a/contracts/php-sdk-examples.json b/contracts/php-sdk-examples.json index b91c88a..6d070c4 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": "7fe06b7c5e415a9aa292869e9037910896b049ad", + "ref": "d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb", "collections": [ "Fleetbase API", "Fleetbase Core API" @@ -1030,6 +1030,66 @@ "call": "$result = $fleetbase->geofences->listGeofenceEvents(\n [\n 'per_page' => '50',\n 'event_type' => 'entered',\n ]\n);", "code": "geofences->listGeofenceEvents(\n [\n 'per_page' => '50',\n 'event_type' => 'entered',\n ]\n);" }, + "fleetbase-api-inspections-list-inspection-forms": { + "collection": "Fleetbase API", + "group": "Inspections", + "name": "List Inspection Forms", + "implementation": "Fleetbase\\Sdk\\Services\\InspectionFormService::listInspectionForms", + "variables": [], + "call": "$result = $fleetbase->inspectionForms->listInspectionForms(\n [\n 'vehicle' => 'vehicle_id-fixture',\n ]\n);", + "code": "inspectionForms->listInspectionForms(\n [\n 'vehicle' => 'vehicle_id-fixture',\n ]\n);" + }, + "fleetbase-api-inspections-list-inspections": { + "collection": "Fleetbase API", + "group": "Inspections", + "name": "List Inspections", + "implementation": "Fleetbase\\Sdk\\Services\\InspectionService::listInspections", + "variables": [], + "call": "$result = $fleetbase->inspections->listInspections(\n [\n 'driver' => 'driver_id-fixture',\n ]\n);", + "code": "inspections->listInspections(\n [\n 'driver' => 'driver_id-fixture',\n ]\n);" + }, + "fleetbase-api-inspections-list-vehicle-inspections": { + "collection": "Fleetbase API", + "group": "Inspections", + "name": "List Vehicle Inspections", + "implementation": "Fleetbase\\Sdk\\Services\\VehicleService::listVehicleInspections", + "variables": { + "vehicleId": "vehicle_id-fixture" + }, + "call": "$result = $fleetbase->vehicles->listVehicleInspections($vehicleId);", + "code": "vehicles->listVehicleInspections($vehicleId);" + }, + "fleetbase-api-inspections-retrieve-an-inspection": { + "collection": "Fleetbase API", + "group": "Inspections", + "name": "Retrieve an Inspection", + "implementation": "Fleetbase\\Sdk\\Services\\InspectionService::retrieveInspection", + "variables": { + "inspectionId": "inspection_id-fixture" + }, + "call": "$result = $fleetbase->inspections->retrieveInspection($inspectionId);", + "code": "inspections->retrieveInspection($inspectionId);" + }, + "fleetbase-api-inspections-retrieve-an-inspection-form": { + "collection": "Fleetbase API", + "group": "Inspections", + "name": "Retrieve an Inspection Form", + "implementation": "Fleetbase\\Sdk\\Services\\InspectionFormService::retrieveInspectionForm", + "variables": { + "inspectionFormId": "inspection_form_id-fixture" + }, + "call": "$result = $fleetbase->inspectionForms->retrieveInspectionForm($inspectionFormId);", + "code": "inspectionForms->retrieveInspectionForm($inspectionFormId);" + }, + "fleetbase-api-inspections-submit-an-inspection": { + "collection": "Fleetbase API", + "group": "Inspections", + "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);" + }, "fleetbase-api-issues-create-an-issue": { "collection": "Fleetbase API", "group": "Issues", diff --git a/contracts/postman-manifest.json b/contracts/postman-manifest.json index adb6c68..7285115 100644 --- a/contracts/postman-manifest.json +++ b/contracts/postman-manifest.json @@ -2,23 +2,23 @@ "schema_version": 1, "source": { "repository": "https://github.com/fleetbase/postman", - "ref": "7fe06b7c5e415a9aa292869e9037910896b049ad", + "ref": "d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb", "collections": [ "Fleetbase API", "Fleetbase Core API" ] }, "summary": { - "requests": 264, - "groups": 37, + "requests": 270, + "groups": 38, "methods": { "DELETE": 39, - "GET": 92, + "GET": 97, "PATCH": 7, - "POST": 99, + "POST": 100, "PUT": 27 }, - "mapped": 264, + "mapped": 270, "exceptions": 0, "unmapped": 0, "variants": 28 @@ -1213,8 +1213,8 @@ "contract_payload": "json", "legacy_envelope": true }, - "variant_of": "fleetbase-api-drivers-create-a-driver", - "sdk_group": "Drivers" + "sdk_group": "Drivers", + "variant_of": "fleetbase-api-drivers-create-a-driver" }, { "id": "fleetbase-api-drivers-delete-a-driver", @@ -1289,8 +1289,8 @@ "contract_payload": "none", "legacy_envelope": true }, - "variant_of": "fleetbase-api-drivers-delete-a-driver", - "sdk_group": "Drivers" + "sdk_group": "Drivers", + "variant_of": "fleetbase-api-drivers-delete-a-driver" }, { "id": "fleetbase-api-drivers-get-driver-current-organization", @@ -1922,8 +1922,8 @@ "contract_payload": "json", "legacy_envelope": true }, - "variant_of": "fleetbase-api-drivers-update-a-driver", - "sdk_group": "Drivers" + "sdk_group": "Drivers", + "variant_of": "fleetbase-api-drivers-update-a-driver" }, { "id": "fleetbase-api-drivers-verify-driver-login-code", @@ -2616,8 +2616,8 @@ "contract_payload": "json", "legacy_envelope": true }, - "variant_of": "fleetbase-api-drivers-create-a-driver", - "sdk_group": "Drivers" + "sdk_group": "Drivers", + "variant_of": "fleetbase-api-drivers-create-a-driver" }, { "id": "fleetbase-api-fleets-create-a-fleet-vehicle", @@ -2655,8 +2655,8 @@ "contract_payload": "json", "legacy_envelope": true }, - "variant_of": "fleetbase-api-vehicles-create-a-vehicle", - "sdk_group": "Vehicles" + "sdk_group": "Vehicles", + "variant_of": "fleetbase-api-vehicles-create-a-vehicle" }, { "id": "fleetbase-api-fleets-create-a-subfleet", @@ -2706,8 +2706,8 @@ "contract_payload": "json", "legacy_envelope": true }, - "variant_of": "fleetbase-api-fleets-create-a-fleet", - "sdk_group": "Fleets" + "sdk_group": "Fleets", + "variant_of": "fleetbase-api-fleets-create-a-fleet" }, { "id": "fleetbase-api-fleets-delete-a-fleet", @@ -2782,8 +2782,8 @@ "contract_payload": "none", "legacy_envelope": true }, - "variant_of": "fleetbase-api-drivers-delete-a-driver", - "sdk_group": "Drivers" + "sdk_group": "Drivers", + "variant_of": "fleetbase-api-drivers-delete-a-driver" }, { "id": "fleetbase-api-fleets-delete-a-fleet-vehicle", @@ -2818,8 +2818,8 @@ "contract_payload": "none", "legacy_envelope": true }, - "variant_of": "fleetbase-api-vehicles-delete-a-vehicle", - "sdk_group": "Vehicles" + "sdk_group": "Vehicles", + "variant_of": "fleetbase-api-vehicles-delete-a-vehicle" }, { "id": "fleetbase-api-fleets-delete-a-subfleet", @@ -2854,8 +2854,8 @@ "contract_payload": "none", "legacy_envelope": true }, - "variant_of": "fleetbase-api-fleets-delete-a-fleet", - "sdk_group": "Fleets" + "sdk_group": "Fleets", + "variant_of": "fleetbase-api-fleets-delete-a-fleet" }, { "id": "fleetbase-api-fleets-query-fleets", @@ -2937,8 +2937,8 @@ "contract_payload": "none", "legacy_envelope": true }, - "variant_of": "fleetbase-api-fleets-assign-a-driver-to-a-fleet", - "sdk_group": "Fleets" + "sdk_group": "Fleets", + "variant_of": "fleetbase-api-fleets-assign-a-driver-to-a-fleet" }, { "id": "fleetbase-api-fleets-reassign-a-vehicle-to-a-fleet", @@ -2980,8 +2980,8 @@ "contract_payload": "none", "legacy_envelope": true }, - "variant_of": "fleetbase-api-fleets-assign-a-vehicle-to-a-fleet", - "sdk_group": "Fleets" + "sdk_group": "Fleets", + "variant_of": "fleetbase-api-fleets-assign-a-vehicle-to-a-fleet" }, { "id": "fleetbase-api-fleets-remove-a-driver-from-a-fleet", @@ -3065,8 +3065,8 @@ "contract_payload": "none", "legacy_envelope": true }, - "variant_of": "fleetbase-api-fleets-remove-a-driver-from-a-fleet", - "sdk_group": "Fleets" + "sdk_group": "Fleets", + "variant_of": "fleetbase-api-fleets-remove-a-driver-from-a-fleet" }, { "id": "fleetbase-api-fleets-remove-a-vehicle-from-a-fleet", @@ -3150,8 +3150,8 @@ "contract_payload": "none", "legacy_envelope": true }, - "variant_of": "fleetbase-api-fleets-remove-a-vehicle-from-a-fleet", - "sdk_group": "Fleets" + "sdk_group": "Fleets", + "variant_of": "fleetbase-api-fleets-remove-a-vehicle-from-a-fleet" }, { "id": "fleetbase-api-fleets-retrieve-a-fleet", @@ -3921,6 +3921,239 @@ }, "sdk_group": "Geofences" }, + { + "id": "fleetbase-api-inspections-list-inspection-forms", + "collection": "Fleetbase API", + "group": "Inspections", + "name": "List Inspection Forms", + "method": "GET", + "url": "{{base_url}}/{{namespace}}/inspection-forms", + "source": "postman/collections/Fleetbase API/Inspections/List Inspection Forms.request.yaml", + "description": "Lists the inspection forms the organisation has published, newest first. Draft and archived forms are never listed: a driver can only file against a published one.\n\nEach form carries its structure as `grouped_fields` \u2014 the groups of typed fields a driver fills in \u2014 so a list is enough to render a form picker without reading each one.\n\nSend `vehicle` to narrow the list to what applies to one vehicle \u2014 forms bound to that vehicle, and forms bound to nothing, which are the organisation-wide ones. Send `type` to narrow by form type, as one value or a comma separated list.", + "authentication": "fleetbase-api-key", + "request_fixture": { + "path_variables": [], + "query": { + "vehicle": "{{vehicle_id}}" + }, + "body_type": null, + "body": null + }, + "response_fixtures": [], + "implementation": "Fleetbase\\Sdk\\Services\\InspectionFormService::listInspectionForms", + "tests": [ + "tests/Contract/EndpointContractTest.php::testEveryEndpointContract" + ], + "status": "complete", + "exception": null, + "sdk_signature": { + "path_parameters": [], + "request_data": "query", + "contract_payload": "query", + "legacy_envelope": true + }, + "sdk_group": "Inspection Forms" + }, + { + "id": "fleetbase-api-inspections-list-inspections", + "collection": "Fleetbase API", + "group": "Inspections", + "name": "List Inspections", + "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.", + "authentication": "fleetbase-api-key", + "request_fixture": { + "path_variables": [], + "query": { + "driver": "{{driver_id}}" + }, + "body_type": null, + "body": null + }, + "response_fixtures": [], + "implementation": "Fleetbase\\Sdk\\Services\\InspectionService::listInspections", + "tests": [ + "tests/Contract/EndpointContractTest.php::testEveryEndpointContract" + ], + "status": "complete", + "exception": null, + "sdk_signature": { + "path_parameters": [], + "request_data": "query", + "contract_payload": "query", + "legacy_envelope": true + }, + "sdk_group": "Inspections" + }, + { + "id": "fleetbase-api-inspections-list-vehicle-inspections", + "collection": "Fleetbase API", + "group": "Inspections", + "name": "List Vehicle Inspections", + "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.", + "authentication": "fleetbase-api-key", + "request_fixture": { + "path_variables": { + "id": "{{vehicle_id}}" + }, + "query": [], + "body_type": null, + "body": null + }, + "response_fixtures": [], + "implementation": "Fleetbase\\Sdk\\Services\\VehicleService::listVehicleInspections", + "tests": [ + "tests/Contract/EndpointContractTest.php::testEveryEndpointContract" + ], + "status": "complete", + "exception": null, + "sdk_signature": { + "path_parameters": [ + "id" + ], + "request_data": "query", + "contract_payload": "none", + "legacy_envelope": true + }, + "sdk_group": "Vehicles" + }, + { + "id": "fleetbase-api-inspections-retrieve-an-inspection", + "collection": "Fleetbase API", + "group": "Inspections", + "name": "Retrieve an Inspection", + "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.", + "authentication": "fleetbase-api-key", + "request_fixture": { + "path_variables": { + "id": "{{inspection_id}}" + }, + "query": [], + "body_type": null, + "body": null + }, + "response_fixtures": [], + "implementation": "Fleetbase\\Sdk\\Services\\InspectionService::retrieveInspection", + "tests": [ + "tests/Contract/EndpointContractTest.php::testEveryEndpointContract" + ], + "status": "complete", + "exception": null, + "sdk_signature": { + "path_parameters": [ + "id" + ], + "request_data": "query", + "contract_payload": "none", + "legacy_envelope": true + }, + "sdk_group": "Inspections" + }, + { + "id": "fleetbase-api-inspections-retrieve-an-inspection-form", + "collection": "Fleetbase API", + "group": "Inspections", + "name": "Retrieve an Inspection Form", + "method": "GET", + "url": "{{base_url}}/{{namespace}}/inspection-forms/:id", + "source": "postman/collections/Fleetbase API/Inspections/Retrieve an Inspection Form.request.yaml", + "description": "Retrieves one published inspection form with its structure and `settings`.\n\nA form is groups of typed fields. `grouped_fields` is what a driver renders: one entry per group, in the order the builder laid them out, each with a `name`, a `meta.grid_size` and its `fields`. A field carries an `id`, a `name`, a `label`, a `type` \u2014 `pass-fail`, `input`, `textarea`, `number`, `select`, `radio-button`, `boolean`, `date-picker`, `date-time-input`, `file-upload` or `signature` \u2014 plus `required`, `options` and `meta`.\n\nA `pass-fail` field's `meta` says what happens when it fails: the default `severity`, whether a photo or a comment is required, whether the defect takes the vehicle out of service (`unsafe_on_fail`), and any `instructions`. A `number` field's `meta` may name its `unit` and the `role` it plays, such as `odometer`.\n\nThe first cut's flat `items` checklist is still answered, read-only, for forms that have not been rebuilt; a form built from fields answers both, and `grouped_fields` is the one to render.\n\nA form that is not published \u2014 a draft, or one that has been archived \u2014 answers 404, the same as one that does not exist: to a driver, a form that cannot be filled in is not there.", + "authentication": "fleetbase-api-key", + "request_fixture": { + "path_variables": { + "id": "{{inspection_form_id}}" + }, + "query": [], + "body_type": null, + "body": null + }, + "response_fixtures": [], + "implementation": "Fleetbase\\Sdk\\Services\\InspectionFormService::retrieveInspectionForm", + "tests": [ + "tests/Contract/EndpointContractTest.php::testEveryEndpointContract" + ], + "status": "complete", + "exception": null, + "sdk_signature": { + "path_parameters": [ + "id" + ], + "request_data": "query", + "contract_payload": "none", + "legacy_envelope": true + }, + "sdk_group": "Inspection Forms" + }, + { + "id": "fleetbase-api-inspections-submit-an-inspection", + "collection": "Fleetbase API", + "group": "Inspections", + "name": "Submit an Inspection", + "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.", + "authentication": "fleetbase-api-key", + "request_fixture": { + "path_variables": [], + "query": [], + "body_type": "json", + "body": { + "inspection_form": "inspection_form_id-fixture", + "driver": "driver_id-fixture", + "vehicle": "vehicle_id-fixture", + "started_at": "2026-09-09T07:10:00Z", + "odometer": 120400, + "engine_hours": 3100, + "location": { + "latitude": 1.3521, + "longitude": 103.8198 + }, + "custom_field_values": [], + "item_results": [ + { + "item_key": "brakes", + "label": "Brakes", + "category": "Safety", + "passed": false, + "severity": "critical", + "comments": "Pedal is soft.", + "photos": [ + "proof_photo_base64-fixture" + ] + }, + { + "item_key": "lights", + "label": "Lights", + "category": "Safety", + "passed": true + } + ] + } + }, + "response_fixtures": [], + "implementation": "Fleetbase\\Sdk\\Services\\InspectionService::submitInspection", + "tests": [ + "tests/Contract/EndpointContractTest.php::testEveryEndpointContract" + ], + "status": "complete", + "exception": null, + "sdk_signature": { + "path_parameters": [], + "request_data": "body", + "contract_payload": "json", + "legacy_envelope": true + }, + "sdk_group": "Inspections" + }, { "id": "fleetbase-api-issues-create-an-issue", "collection": "Fleetbase API", @@ -5181,8 +5414,8 @@ "contract_payload": "json", "legacy_envelope": true }, - "variant_of": "fleetbase-api-orders-create-an-order", - "sdk_group": "Orders" + "sdk_group": "Orders", + "variant_of": "fleetbase-api-orders-create-an-order" }, { "id": "fleetbase-api-orders-delete-an-order", @@ -7281,8 +7514,8 @@ "contract_payload": "json", "legacy_envelope": true }, - "variant_of": "fleetbase-api-service-rates-create-a-service-rate", - "sdk_group": "Service Rates" + "sdk_group": "Service Rates", + "variant_of": "fleetbase-api-service-rates-create-a-service-rate" }, { "id": "fleetbase-api-service-rates-delete-a-service-rate", @@ -7874,8 +8107,8 @@ "contract_payload": "json", "legacy_envelope": true }, - "variant_of": "fleetbase-api-devices-attach-device", - "sdk_group": "Devices" + "sdk_group": "Devices", + "variant_of": "fleetbase-api-devices-attach-device" }, { "id": "fleetbase-api-trailers-attach-equipment-to-trailer", @@ -7913,8 +8146,8 @@ "contract_payload": "json", "legacy_envelope": true }, - "variant_of": "fleetbase-api-equipment-attach-equipment", - "sdk_group": "Equipment" + "sdk_group": "Equipment", + "variant_of": "fleetbase-api-equipment-attach-equipment" }, { "id": "fleetbase-api-trailers-attach-trailer-to-vehicle", @@ -7989,8 +8222,8 @@ "contract_payload": "json", "legacy_envelope": true }, - "variant_of": "fleetbase-api-devices-create-a-device", - "sdk_group": "Devices" + "sdk_group": "Devices", + "variant_of": "fleetbase-api-devices-create-a-device" }, { "id": "fleetbase-api-trailers-create-trailer-equipment", @@ -8026,8 +8259,8 @@ "contract_payload": "json", "legacy_envelope": true }, - "variant_of": "fleetbase-api-equipment-create-equipment", - "sdk_group": "Equipment" + "sdk_group": "Equipment", + "variant_of": "fleetbase-api-equipment-create-equipment" }, { "id": "fleetbase-api-trailers-create-a-trailer", @@ -8103,8 +8336,8 @@ "contract_payload": "none", "legacy_envelope": true }, - "variant_of": "fleetbase-api-devices-delete-a-device", - "sdk_group": "Devices" + "sdk_group": "Devices", + "variant_of": "fleetbase-api-devices-delete-a-device" }, { "id": "fleetbase-api-trailers-delete-trailer-equipment", @@ -8139,8 +8372,8 @@ "contract_payload": "none", "legacy_envelope": true }, - "variant_of": "fleetbase-api-equipment-delete-equipment", - "sdk_group": "Equipment" + "sdk_group": "Equipment", + "variant_of": "fleetbase-api-equipment-delete-equipment" }, { "id": "fleetbase-api-trailers-delete-a-trailer", @@ -8210,8 +8443,8 @@ "contract_payload": "none", "legacy_envelope": true }, - "variant_of": "fleetbase-api-devices-detach-device", - "sdk_group": "Devices" + "sdk_group": "Devices", + "variant_of": "fleetbase-api-devices-detach-device" }, { "id": "fleetbase-api-trailers-detach-trailer-equipment", @@ -8246,8 +8479,8 @@ "contract_payload": "none", "legacy_envelope": true }, - "variant_of": "fleetbase-api-equipment-detach-equipment", - "sdk_group": "Equipment" + "sdk_group": "Equipment", + "variant_of": "fleetbase-api-equipment-detach-equipment" }, { "id": "fleetbase-api-trailers-detach-trailer-from-vehicle", @@ -8427,8 +8660,8 @@ "contract_payload": "json", "legacy_envelope": true }, - "variant_of": "fleetbase-api-equipment-attach-equipment", - "sdk_group": "Equipment" + "sdk_group": "Equipment", + "variant_of": "fleetbase-api-equipment-attach-equipment" }, { "id": "fleetbase-api-trailers-retrieve-a-trailer", @@ -8577,8 +8810,8 @@ "contract_payload": "none", "legacy_envelope": true }, - "variant_of": "fleetbase-api-trailers-list-trailer-connections", - "sdk_group": "Trailers" + "sdk_group": "Trailers", + "variant_of": "fleetbase-api-trailers-list-trailer-connections" }, { "id": "fleetbase-api-trailers-verify-trailer-equipment", @@ -8613,8 +8846,8 @@ "contract_payload": "none", "legacy_envelope": true }, - "variant_of": "fleetbase-api-trailers-retrieve-a-trailer", - "sdk_group": "Trailers" + "sdk_group": "Trailers", + "variant_of": "fleetbase-api-trailers-retrieve-a-trailer" }, { "id": "fleetbase-api-vehicles-create-a-vehicle", @@ -8803,8 +9036,8 @@ "contract_payload": "query", "legacy_envelope": true }, - "variant_of": "fleetbase-api-vehicles-retrieve-a-vehicle", - "sdk_group": "Vehicles" + "sdk_group": "Vehicles", + "variant_of": "fleetbase-api-vehicles-retrieve-a-vehicle" }, { "id": "fleetbase-api-vehicles-expand-a-vehicle-scalar", @@ -8846,8 +9079,8 @@ "contract_payload": "query", "legacy_envelope": true }, - "variant_of": "fleetbase-api-vehicles-retrieve-a-vehicle", - "sdk_group": "Vehicles" + "sdk_group": "Vehicles", + "variant_of": "fleetbase-api-vehicles-retrieve-a-vehicle" }, { "id": "fleetbase-api-vehicles-query-vehicles", diff --git a/contracts/public-api-1.3.0.json b/contracts/public-api-1.3.0.json new file mode 100644 index 0000000..d5226bb --- /dev/null +++ b/contracts/public-api-1.3.0.json @@ -0,0 +1,11551 @@ +{ + "schema_version": 1, + "release": "1.3.0", + "namespace": "Fleetbase\\Sdk", + "classes": { + "Fleetbase\\Sdk\\Arr": { + "final": false, + "parent": null, + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "any", + "visibility": "public", + "static": true, + "return_type": null, + "parameters": [ + { + "name": "arr", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "predicate", + "type": "callable", + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "every", + "visibility": "public", + "static": true, + "return_type": null, + "parameters": [ + { + "name": "arr", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "predicate", + "type": "callable", + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "first", + "visibility": "public", + "static": true, + "return_type": null, + "parameters": [ + { + "name": "arr", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": false + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Configuration": { + "final": true, + "parent": null, + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "apiKey", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "debug", + "type": "bool", + "by_reference": false, + "variadic": false, + "optional": true, + "default": false + } + ] + }, + { + "name": "getApiKey", + "visibility": "public", + "static": false, + "return_type": "string", + "parameters": [] + }, + { + "name": "getBaseUri", + "visibility": "public", + "static": false, + "return_type": "string", + "parameters": [] + }, + { + "name": "getHost", + "visibility": "public", + "static": false, + "return_type": "string", + "parameters": [] + }, + { + "name": "getNamespace", + "visibility": "public", + "static": false, + "return_type": "string", + "parameters": [] + }, + { + "name": "getVersion", + "visibility": "public", + "static": false, + "return_type": "string", + "parameters": [] + }, + { + "name": "isDebug", + "visibility": "public", + "static": false, + "return_type": "bool", + "parameters": [] + }, + { + "name": "toArray", + "visibility": "public", + "static": false, + "return_type": "array", + "parameters": [] + } + ] + }, + "Fleetbase\\Sdk\\EndpointService": { + "final": false, + "parent": "Fleetbase\\Sdk\\Service", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Fleetbase": { + "final": false, + "parent": null, + "interfaces": [], + "constants": [], + "properties": [ + { + "name": "chatChannels", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "client", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "comments", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "contacts", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "customers", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "devices", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "drivers", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "entities", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "equipment", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "files", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "fleets", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "fuelReports", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "fuelTransactions", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "geofences", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "issues", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "labels", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "manifests", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "onboard", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "orchestrator", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "orderConfigs", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "orders", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "organizations", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "parts", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "payloads", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "places", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "purchaseRates", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "sensors", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "serviceAreas", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "serviceQuotes", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "serviceRates", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "trackingNumbers", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "trackingStatuses", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "trailers", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "vehicles", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "vendors", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "workOrders", + "visibility": "public", + "static": false, + "type": null + }, + { + "name": "zones", + "visibility": "public", + "static": false, + "type": null + } + ], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "publicKey", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "config", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "debug", + "type": "bool", + "by_reference": false, + "variadic": false, + "optional": true, + "default": false + } + ] + }, + { + "name": "chatChannels", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Service", + "parameters": [] + }, + { + "name": "comments", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Service", + "parameters": [] + }, + { + "name": "contacts", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Service", + "parameters": [] + }, + { + "name": "customers", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\CustomerService", + "parameters": [] + }, + { + "name": "devices", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\DeviceService", + "parameters": [] + }, + { + "name": "drivers", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Service", + "parameters": [] + }, + { + "name": "entities", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\EntityService", + "parameters": [] + }, + { + "name": "equipment", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\EquipmentService", + "parameters": [] + }, + { + "name": "files", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Service", + "parameters": [] + }, + { + "name": "fleets", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\FleetService", + "parameters": [] + }, + { + "name": "fuelReports", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\FuelReportService", + "parameters": [] + }, + { + "name": "fuelTransactions", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\FuelTransactionService", + "parameters": [] + }, + { + "name": "geofences", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\GeofenceService", + "parameters": [] + }, + { + "name": "getOptions", + "visibility": "public", + "static": false, + "return_type": "array", + "parameters": [] + }, + { + "name": "getVersion", + "visibility": "public", + "static": false, + "return_type": "string", + "parameters": [] + }, + { + "name": "issues", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\IssueService", + "parameters": [] + }, + { + "name": "labels", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\LabelService", + "parameters": [] + }, + { + "name": "manifests", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\ManifestService", + "parameters": [] + }, + { + "name": "newInstance", + "visibility": "public", + "static": true, + "return_type": "Fleetbase\\Sdk\\Fleetbase", + "parameters": [] + }, + { + "name": "onboard", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\OnboardService", + "parameters": [] + }, + { + "name": "orchestrator", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\OrchestratorService", + "parameters": [] + }, + { + "name": "orderConfigs", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\OrderConfigService", + "parameters": [] + }, + { + "name": "orders", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\OrderService", + "parameters": [] + }, + { + "name": "organizations", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Service", + "parameters": [] + }, + { + "name": "parts", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\PartService", + "parameters": [] + }, + { + "name": "payloads", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Service", + "parameters": [] + }, + { + "name": "places", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Service", + "parameters": [] + }, + { + "name": "purchaseRates", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\PurchaseRateService", + "parameters": [] + }, + { + "name": "sensors", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\SensorService", + "parameters": [] + }, + { + "name": "service", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Service", + "parameters": [ + { + "name": "name", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "serviceAreas", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\ServiceAreaService", + "parameters": [] + }, + { + "name": "serviceQuotes", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\ServiceQuoteService", + "parameters": [] + }, + { + "name": "serviceRates", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\ServiceRateService", + "parameters": [] + }, + { + "name": "setApiKey", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Fleetbase", + "parameters": [ + { + "name": "publicKey", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "trackingNumbers", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\TrackingNumberService", + "parameters": [] + }, + { + "name": "trackingStatuses", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\TrackingStatusService", + "parameters": [] + }, + { + "name": "trailers", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\TrailerService", + "parameters": [] + }, + { + "name": "vehicles", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Service", + "parameters": [] + }, + { + "name": "vendors", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Service", + "parameters": [] + }, + { + "name": "workOrders", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\WorkOrderService", + "parameters": [] + }, + { + "name": "zones", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Services\\ZoneService", + "parameters": [] + } + ] + }, + "Fleetbase\\Sdk\\FleetbaseException": { + "final": false, + "parent": "RuntimeException", + "interfaces": [ + "Stringable", + "Throwable" + ], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "message", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "statusCode", + "type": "?int", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "errorCode", + "type": "?string", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "details", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestId", + "type": "?string", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "method", + "type": "?string", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "url", + "type": "?string", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "previous", + "type": "?Throwable", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + } + ] + }, + { + "name": "getDetails", + "visibility": "public", + "static": false, + "return_type": "array", + "parameters": [] + }, + { + "name": "getErrorCode", + "visibility": "public", + "static": false, + "return_type": "?string", + "parameters": [] + }, + { + "name": "getRequestId", + "visibility": "public", + "static": false, + "return_type": "?string", + "parameters": [] + }, + { + "name": "getRequestMethod", + "visibility": "public", + "static": false, + "return_type": "?string", + "parameters": [] + }, + { + "name": "getRequestUrl", + "visibility": "public", + "static": false, + "return_type": "?string", + "parameters": [] + }, + { + "name": "getStatusCode", + "visibility": "public", + "static": false, + "return_type": "?int", + "parameters": [] + } + ] + }, + "Fleetbase\\Sdk\\HttpClient": { + "final": false, + "parent": null, + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "delete", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "path", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "data", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "get", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "path", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "data", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "getHost", + "visibility": "public", + "static": false, + "return_type": "string", + "parameters": [] + }, + { + "name": "getLastPsrResponse", + "visibility": "public", + "static": false, + "return_type": "?Psr\\Http\\Message\\ResponseInterface", + "parameters": [] + }, + { + "name": "getLastResponse", + "visibility": "public", + "static": false, + "return_type": "GuzzleHttp\\Psr7\\Response", + "parameters": [] + }, + { + "name": "getNamespace", + "visibility": "public", + "static": false, + "return_type": "string", + "parameters": [] + }, + { + "name": "getOptions", + "visibility": "public", + "static": false, + "return_type": "array", + "parameters": [] + }, + { + "name": "patch", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "path", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "data", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "post", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "path", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "data", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "put", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "path", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "data", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "request", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "method", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "path", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "data", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "setHost", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\HttpClient", + "parameters": [ + { + "name": "host", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "setNamespace", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\HttpClient", + "parameters": [ + { + "name": "namespace", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Resource": { + "final": false, + "parent": null, + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [ + { + "name": "attributes", + "visibility": "protected", + "static": false, + "type": "array" + }, + { + "name": "options", + "visibility": "protected", + "static": false, + "type": "array" + }, + { + "name": "originalAttributes", + "visibility": "protected", + "static": false, + "type": "array" + }, + { + "name": "service", + "visibility": "protected", + "static": false, + "type": "?Fleetbase\\Sdk\\Service" + } + ], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "attributes", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "service", + "type": "?Fleetbase\\Sdk\\Service", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "options", + "type": "?array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "__get", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "name", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "__isset", + "visibility": "public", + "static": false, + "return_type": "bool", + "parameters": [ + { + "name": "name", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "__set", + "visibility": "public", + "static": false, + "return_type": "void", + "parameters": [ + { + "name": "name", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "value", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "create", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "attributes", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "destroy", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "getAttribute", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "attribute", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "defaultValue", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + } + ] + }, + { + "name": "getAttributes", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "properties", + "type": "?array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "getChanges", + "visibility": "public", + "static": false, + "return_type": "array", + "parameters": [] + }, + { + "name": "getDirtyAttributes", + "visibility": "public", + "static": false, + "return_type": "array", + "parameters": [] + }, + { + "name": "getService", + "visibility": "public", + "static": false, + "return_type": "?Fleetbase\\Sdk\\Service", + "parameters": [] + }, + { + "name": "hasAttribute", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "property", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "isAttributeFilled", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "property", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "isDirty", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "attribute", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "jsonSerialize", + "visibility": "public", + "static": false, + "return_type": "array", + "parameters": [] + }, + { + "name": "offsetExists", + "visibility": "public", + "static": false, + "return_type": "bool", + "parameters": [ + { + "name": "offset", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "offsetGet", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "offset", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "offsetSet", + "visibility": "public", + "static": false, + "return_type": "void", + "parameters": [ + { + "name": "offset", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "value", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "offsetUnset", + "visibility": "public", + "static": false, + "return_type": "void", + "parameters": [ + { + "name": "offset", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "reload", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Resource", + "parameters": [ + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "requireService", + "visibility": "protected", + "static": false, + "return_type": "Fleetbase\\Sdk\\Service", + "parameters": [] + }, + { + "name": "save", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "options", + "type": "?array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "setAttribute", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\Resource", + "parameters": [ + { + "name": "attribute", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "value", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "toArray", + "visibility": "public", + "static": false, + "return_type": "array", + "parameters": [] + }, + { + "name": "update", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "attributes", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Resources\\ChatChannel": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\Comment": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\Contact": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__constructor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "attributes", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "service", + "type": "?Fleetbase\\Sdk\\Service", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Resources\\Customer": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\Device": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\Driver": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__constructor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "attributes", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "service", + "type": "?Fleetbase\\Sdk\\Service", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Resources\\Entity": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__constructor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "attributes", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "service", + "type": "?Fleetbase\\Sdk\\Service", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Resources\\Equipment": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\File": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\Fleet": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\FuelReport": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\FuelTransaction": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\Geofence": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\Issue": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\Label": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\Manifest": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\Onboard": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\Orchestrator": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\Order": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__constructor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "attributes", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "service", + "type": "?Fleetbase\\Sdk\\Services\\OrderService", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "cancel", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "params", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "captureQrCode", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "subjectId", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "params", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "captureSignature", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "subjectId", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "params", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "complete", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "params", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "dispatch", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "params", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "getDistanceAndTime", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "params", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "getNextActivity", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "params", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "setDestination", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "destinationId", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "params", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "start", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "params", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateActivity", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "params", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Resources\\OrderConfig": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\Organization": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\Part": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\Payload": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__constructor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "attributes", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "service", + "type": "?Fleetbase\\Sdk\\Service", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Resources\\Place": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__constructor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "attributes", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "service", + "type": "?Fleetbase\\Sdk\\Service", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Resources\\PurchaseRate": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\Sensor": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\ServiceArea": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__constructor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "attributes", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "service", + "type": "?Fleetbase\\Sdk\\Service", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Resources\\ServiceQuote": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__constructor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "attributes", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "service", + "type": "?Fleetbase\\Sdk\\Service", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Resources\\ServiceRate": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__constructor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "attributes", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "service", + "type": "?Fleetbase\\Sdk\\Service", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Resources\\TrackingNumber": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\TrackingStatus": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__constructor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "attributes", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "service", + "type": "?Fleetbase\\Sdk\\Service", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Resources\\Trailer": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\Vehicle": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__constructor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "attributes", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "service", + "type": "?Fleetbase\\Sdk\\Service", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Resources\\Vendor": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__constructor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "attributes", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "service", + "type": "?Fleetbase\\Sdk\\Service", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Resources\\Waypoint": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__constructor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "attributes", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "service", + "type": "?Fleetbase\\Sdk\\Service", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Resources\\WorkOrder": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [] + }, + "Fleetbase\\Sdk\\Resources\\Zone": { + "final": false, + "parent": "Fleetbase\\Sdk\\Resource", + "interfaces": [ + "JsonSerializable" + ], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__constructor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "attributes", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "service", + "type": "?Fleetbase\\Sdk\\Service", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Service": { + "final": false, + "parent": null, + "interfaces": [], + "constants": [], + "properties": [ + { + "name": "client", + "visibility": "protected", + "static": false, + "type": "Fleetbase\\Sdk\\HttpClient" + }, + { + "name": "namespace", + "visibility": "protected", + "static": false, + "type": "string" + }, + { + "name": "options", + "visibility": "protected", + "static": false, + "type": "array" + }, + { + "name": "resource", + "visibility": "protected", + "static": false, + "type": "string" + } + ], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "resource", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "action", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "method", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "path", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "data", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "create", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "attributes", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "destroy", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "id", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "endpoint", + "visibility": "protected", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "method", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "template", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "endpointFromArguments", + "visibility": "protected", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "method", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "template", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "pathParameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "requestData", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "arguments", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "findAll", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "findRecord", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "id", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "getClient", + "visibility": "public", + "static": false, + "return_type": "Fleetbase\\Sdk\\HttpClient", + "parameters": [] + }, + { + "name": "getOptions", + "visibility": "public", + "static": false, + "return_type": "array", + "parameters": [] + }, + { + "name": "query", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "query", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryRecord", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "query", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "resolve", + "visibility": "protected", + "static": false, + "return_type": "Fleetbase\\Sdk\\Resource", + "parameters": [ + { + "name": "data", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "resolveCollection", + "visibility": "protected", + "static": false, + "return_type": "?array", + "parameters": [ + { + "name": "data", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "update", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "id", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "attributes", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "uri", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "path", + "type": "?string", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + } + ] + }, + { + "name": "uriForResource", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "id", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "path", + "type": "?string", + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\ChatChannelService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "addParticipant", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createChatChannel", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createReadReceipt", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteChatChannel", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteMessage", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "listAvailableParticipants", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryChatChannels", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "removeParticipant", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveChatChannel", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "sendMessage", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateChatChannel", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\CommentService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createComment", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteComment", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryComments", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveComment", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateComment", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\ContactService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createContact", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteContact", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryContacts", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveContact", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateContact", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\CustomerService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createCustomer", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createCustomerOrder", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "forgotCustomerPassword", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "listCustomerOrders", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "listCustomerPlaces", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "loginCustomer", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "logoutAllCustomerSessions", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "logoutCustomer", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "registerCustomerDevice", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "requestCustomerCreationCode", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "requestCustomerLoginSms", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "resetCustomerPassword", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveAuthenticatedCustomer", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveCustomerOrder", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateAuthenticatedCustomer", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "verifyCustomerLoginCode", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\DeviceService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "attachDevice", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createDevice", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteDevice", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "detachDevice", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryDevices", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveDevice", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateDevice", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\DriverService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "changeDriverPassword", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createDriver", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteDriver", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "getDriverCurrentOrganization", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "listDriverManifests", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "listDriverOrganizations", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "loginDriver", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryDrivers", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "registerDevice", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "registerDriverDevice", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "requestDriverLoginSms", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "requestDriverPasswordReset", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "resetDriverPassword", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveDriver", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "simulateDriverRoute", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "switchDriverOrganization", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "toggleDriverOnline", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "trackDriver", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateDriver", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "verifyDriverLoginCode", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\EntityService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createEntity", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteEntity", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryEntities", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveEntity", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateEntity", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\EquipmentService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "attachEquipment", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createEquipment", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteEquipment", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "detachEquipment", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryEquipment", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveEquipment", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateEquipment", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\FileService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteFile", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "downloadFile", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryFiles", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveFile", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateFile", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "uploadBase64File", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "uploadFile", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\FleetService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "assignDriverToFleet", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "data", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "assignVehicleToFleet", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "data", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createFleet", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteFleet", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryFleets", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "removeDriverFromFleet", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "data", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "removeVehicleFromFleet", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "data", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveFleet", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateFleet", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\FuelReportService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createFuelReport", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteFuelReport", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryFuelReports", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveFuelReport", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateFuelReport", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\FuelTransactionService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createFuelTransaction", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteFuelTransaction", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "matchFuelTransactionOrder", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "matchFuelTransactionVehicle", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryFuelTransactions", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "reprocessFuelTransaction", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveFuelTransaction", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "reviewFuelTransaction", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateFuelTransaction", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\GeofenceService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "getDriverGeofenceHistory", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "getGeofenceDwellReport", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "getGeofenceInventory", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "listGeofenceEvents", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\IssueService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createIssue", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteIssue", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryIssues", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveIssue", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateIssue", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\LabelService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "renderLabel", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\ManifestService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "optimizeManifest", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveManifest", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateManifestStop", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\OnboardService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "getDriverOnboardSettings", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\OrchestratorService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "commitOrchestratorPlan", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "runOrchestrator", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\OrderConfigService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryOrderConfigs", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveOrderConfig", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\OrderService": { + "final": false, + "parent": "Fleetbase\\Sdk\\Service", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "cancel", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "id", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "params", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "cancelOrder", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "capturePhotoForOrder", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "data", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "captureQrCode", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "id", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "subjectId", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "params", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "captureQrCodeForOrder", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "data", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "captureSignature", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "id", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "subjectId", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + }, + { + "name": "params", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "captureSignatureForOrder", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "data", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "complete", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "id", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "params", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "completeOrder", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createOrder", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createOrderUsingCompletePayload", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createOrderUsingCoordinates", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createOrderUsingGeojsonPoints", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createOrderUsingOnlyPickupDropoff", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createOrderUsingOnlyWaypoints", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createOrderUsingPayload", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createOrderUsingWaypointsAndEntitiesWithPhotos", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createOrderUsingWaypointsAndEntityDestinations", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteOrder", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "dispatch", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "id", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "params", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "dispatchOrder", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "getDistanceAndTime", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "id", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "params", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "getEditableEntityFields", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "getNextActivity", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "id", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "params", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "getOrderDistanceAndTime", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "getOrderEta", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "getOrderNextActivity", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "getOrderTracker", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "listOrderComments", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "listOrderProofs", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "data", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryOrders", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveOrder", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "scheduleOrder", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "setDestination", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "id", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "destinationId", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "params", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "setOrderDestination", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "data", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "start", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "id", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "params", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "startOrder", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateActivity", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "id", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "params", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateOrder", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateOrderActivity", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\OrganizationService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "getCurrentOrganization", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "listOrganizations", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\PartService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createPart", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deletePart", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryParts", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrievePart", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updatePart", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\PayloadService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createPayload", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deletePayload", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryPayloads", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrievePayload", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updatePayload", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\PlaceService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createPlace", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deletePlace", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "listAllPlaces", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryPlaces", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrievePlace", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "searchPlaces", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updatePlace", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\PurchaseRateService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createPurchaseRate", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryPurchaseRates", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrievePurchaseRate", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\SensorService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createSensor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteSensor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "querySensors", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveSensor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateSensor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\ServiceAreaService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createServiceArea", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteServiceArea", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryServiceAreas", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveServiceArea", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateServiceArea", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\ServiceQuoteService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryServiceQuotes", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveServiceQuote", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\ServiceRateService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createServiceRate", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteServiceRate", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryServiceRates", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveServiceRate", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateServiceRate", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\TrackingNumberService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createTrackingNumber", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "decodeTrackingNumberQr", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteTrackingNumber", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryTrackingNumbers", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveTrackingNumber", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\TrackingStatusService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createTrackingStatus", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteTrackingStatus", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryTrackingStatuses", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveTrackingStatus", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateTrackingStatus", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\TrailerService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "attachTrailerToVehicle", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createTrailer", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteTrailer", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "detachTrailerFromVehicle", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "listTrailerConnections", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryTrailers", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveTrailer", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "trackTrailer", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateTrailer", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\VehicleService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createVehicle", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteVehicle", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "listVehicleTrailers", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryVehicles", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveVehicle", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "trackVehicle", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateVehicle", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\VendorService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createVendor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteVendor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryVendors", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveVendor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateVendor", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\WorkOrderService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createWorkOrder", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteWorkOrder", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryWorkOrders", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveWorkOrder", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "sendWorkOrder", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateWorkOrder", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Services\\ZoneService": { + "final": false, + "parent": "Fleetbase\\Sdk\\EndpointService", + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "__construct", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "client", + "type": "Fleetbase\\Sdk\\HttpClient", + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "createZone", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "deleteZone", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "queryZones", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": "array", + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "retrieveZone", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + }, + { + "name": "updateZone", + "visibility": "public", + "static": false, + "return_type": null, + "parameters": [ + { + "name": "parameters", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "options", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + }, + { + "name": "requestOptions", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": [] + } + ] + } + ] + }, + "Fleetbase\\Sdk\\Utils": { + "final": false, + "parent": null, + "interfaces": [], + "constants": [], + "properties": [], + "methods": [ + { + "name": "classify", + "visibility": "public", + "static": true, + "return_type": null, + "parameters": [ + { + "name": "string", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "createNamespace", + "visibility": "public", + "static": true, + "return_type": null, + "parameters": [ + { + "name": "namespace", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "dd", + "visibility": "public", + "static": true, + "return_type": null, + "parameters": [] + }, + { + "name": "get", + "visibility": "public", + "static": true, + "return_type": null, + "parameters": [ + { + "name": "target", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "key", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + }, + { + "name": "default", + "type": null, + "by_reference": false, + "variadic": false, + "optional": true, + "default": null + } + ] + }, + { + "name": "pluralize", + "visibility": "public", + "static": true, + "return_type": null, + "parameters": [ + { + "name": "string", + "type": "string", + "by_reference": false, + "variadic": false, + "optional": false + } + ] + }, + { + "name": "value", + "visibility": "public", + "static": true, + "return_type": null, + "parameters": [ + { + "name": "value", + "type": null, + "by_reference": false, + "variadic": false, + "optional": false + } + ] + } + ] + } + }, + "runtime_properties": { + "Fleetbase\\Sdk\\Fleetbase": [ + "chatChannels", + "client", + "comments", + "contacts", + "customers", + "devices", + "drivers", + "entities", + "equipment", + "files", + "fleets", + "fuelReports", + "fuelTransactions", + "geofences", + "issues", + "labels", + "manifests", + "onboard", + "orchestrator", + "orderConfigs", + "orders", + "organizations", + "parts", + "payloads", + "places", + "purchaseRates", + "sensors", + "serviceAreas", + "serviceQuotes", + "serviceRates", + "trackingNumbers", + "trackingStatuses", + "trailers", + "vehicles", + "vendors", + "workOrders", + "zones" + ] + } +} diff --git a/contracts/sdk-variants.json b/contracts/sdk-variants.json index 3aaa9d2..1f2e6b9 100644 --- a/contracts/sdk-variants.json +++ b/contracts/sdk-variants.json @@ -2,6 +2,9 @@ "schema_version": 1, "description": "Postman requests that exercise a scenario on an endpoint the SDK already covers, rather than a distinct operation. The generator maps each to the canonical request's method instead of minting a new one, so a contract-test case cannot become permanent public API surface. Adding an entry here removes nothing that already exists; it only prevents a new method being generated.", "service_groups": { + "fleetbase-api-inspections-list-inspection-forms": "Inspection Forms", + "fleetbase-api-inspections-retrieve-an-inspection-form": "Inspection Forms", + "fleetbase-api-inspections-list-vehicle-inspections": "Vehicles", "fleetbase-api-trailers-list-vehicle-trailers": "Vehicles" }, "variants": { diff --git a/contracts/service-map.json b/contracts/service-map.json index 7c7a3f5..a1e99fd 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": "7fe06b7c5e415a9aa292869e9037910896b049ad", + "ref": "d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb", "collections": [ "Fleetbase API", "Fleetbase Core API" @@ -74,6 +74,16 @@ "trait": "Fleetbase\\Sdk\\Services\\Concerns\\GeofenceServiceEndpoints", "requests": 4 }, + "Inspection Forms": { + "service": "Fleetbase\\Sdk\\Services\\InspectionFormService", + "trait": "Fleetbase\\Sdk\\Services\\Concerns\\InspectionFormServiceEndpoints", + "requests": 2 + }, + "Inspections": { + "service": "Fleetbase\\Sdk\\Services\\InspectionService", + "trait": "Fleetbase\\Sdk\\Services\\Concerns\\InspectionServiceEndpoints", + "requests": 3 + }, "Issues": { "service": "Fleetbase\\Sdk\\Services\\IssueService", "trait": "Fleetbase\\Sdk\\Services\\Concerns\\IssueServiceEndpoints", @@ -172,7 +182,7 @@ "Vehicles": { "service": "Fleetbase\\Sdk\\Services\\VehicleService", "trait": "Fleetbase\\Sdk\\Services\\Concerns\\VehicleServiceEndpoints", - "requests": 7 + "requests": 8 }, "Vendors": { "service": "Fleetbase\\Sdk\\Services\\VendorService", diff --git a/docs/api-coverage.md b/docs/api-coverage.md index 031d478..facde33 100644 --- a/docs/api-coverage.md +++ b/docs/api-coverage.md @@ -1,272 +1,278 @@ # Fleetbase PHP SDK API coverage -Generated from the locked Postman contract at `7fe06b7c5e415a9aa292869e9037910896b049ad`. This matrix contains exactly 264 requests. +Generated from the locked Postman contract at `d6a7cc530fa27d7cf19a0d3ef8594cf4e51a76bb`. 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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Contacts/Create%20a%20Contact.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Contacts/Delete%20a%20Contact.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Contacts/Query%20Contacts.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Contacts/Retrieve%20a%20Contact.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Contacts/Update%20a%20Contact.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Devices/Attach%20Device.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Devices/Create%20a%20Device.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Devices/Delete%20a%20Device.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Devices/Detach%20Device.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Devices/Query%20Devices.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Devices/Retrieve%20a%20Device.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Devices/Update%20a%20Device.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Drivers/Create%20a%20Driver.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Drivers/.resources/Create%20a%20Driver.resources/examples/OK.example.yaml), [422](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Drivers/Create%20an%20Operational%20Driver.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Drivers/Delete%20a%20Driver.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Drivers/Query%20Drivers.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Drivers/Retrieve%20a%20Driver.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Drivers/Update%20a%20Driver.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Entities/Create%20an%20Entity.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Entities/Delete%20a%20Entity.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Entities/Retrieve%20an%20Entity.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Entities/.resources/Retrieve%20an%20Entity.resources/examples/OK.example.yaml), [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Entities/Update%20a%20Entity.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Equipment/Create%20Equipment.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Equipment/Delete%20Equipment.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Equipment/Query%20Equipment.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Equipment/Retrieve%20Equipment.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Equipment/Update%20Equipment.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fleets/Assign%20a%20Driver%20to%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fleets/Assign%20a%20Vehicle%20to%20a%20Fleet.request.yaml)) | [404](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fleets/Create%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fleets/Create%20a%20Subfleet.request.yaml)) | [404](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fleets/.resources/Create%20a%20Subfleet.resources/examples/Not%20Found.example.yaml), [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fleets/.resources/Create%20a%20Subfleet.resources/examples/OK.example.yaml), [422](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fleets/Delete%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fleets/Query%20Fleets.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fleets/Reassign%20a%20Driver%20to%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fleets/Reassign%20a%20Vehicle%20to%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fleets/Remove%20a%20Driver%20from%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fleets/Remove%20a%20Driver%20from%20a%20Fleet%20Again.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fleets/Remove%20a%20Vehicle%20from%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fleets/Remove%20a%20Vehicle%20from%20a%20Fleet%20Again.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fleets/Retrieve%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fleets/Update%20a%20Fleet.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fuel%20Transactions/Create%20a%20Fuel%20Transaction.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fuel%20Transactions/Delete%20a%20Fuel%20Transaction.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fuel%20Transactions/Match%20Fuel%20Transaction%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fuel%20Transactions/Match%20Fuel%20Transaction%20Vehicle.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fuel%20Transactions/Query%20Fuel%20Transactions.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fuel%20Transactions/Reprocess%20Fuel%20Transaction.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fuel%20Transactions/Retrieve%20a%20Fuel%20Transaction.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fuel%20Transactions/Review%20Fuel%20Transaction.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Fuel%20Transactions/Update%20a%20Fuel%20Transaction.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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 / Create an Issue](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Orchestrator/Commit%20Orchestrator%20Plan.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Orchestrator/Run%20Orchestrator.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Orchestrator/.resources/Run%20Orchestrator.resources/examples/Multi-phase%20Prior%20Assignments.example.yaml), [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Orchestrator/.resources/Run%20Orchestrator.resources/examples/Native%20Capacity%20Allocation.example.yaml), [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Orchestrator/.resources/Run%20Orchestrator.resources/examples/Single-phase%20VROOM%20Allocation.example.yaml), [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Orders/Cancel%20an%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Orders/Capture%20QR%20Code%20for%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Orders/Capture%20Signature%20for%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Orders/Create%20an%20Order.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Orders/Dispatch%20an%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Orders/Get%20Order%20Next%20Activity.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Orders/Retrieve%20an%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Orders/Schedule%20an%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Orders/Set%20Order%20Destination.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Orders/Start%20an%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Orders/Update%20Order%20Activity.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Orders/Update%20an%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Parts/Create%20a%20Part.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Parts/Delete%20a%20Part.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Parts/Query%20Parts.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Parts/Retrieve%20a%20Part.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Parts/Update%20a%20Part.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Payloads/Create%20a%20Payload.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Payloads/.resources/Create%20a%20Payload.resources/examples/Create%20a%20Payload.example.yaml), [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Payloads/Delete%20a%20Payload.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Payloads/Update%20a%20Payload.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Places/Create%20a%20Place.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Places/Delete%20a%20Place.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Places/Update%20a%20Place.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Purchase%20Rates/Create%20a%20Purchase%20Rate.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Purchase%20Rates/Retrieve%20a%20Purchase%20Rate.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Sensors/Create%20a%20Sensor.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Sensors/Delete%20a%20Sensor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Sensors/Query%20Sensors.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Sensors/Retrieve%20a%20Sensor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Sensors/Update%20a%20Sensor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Service%20Areas/Create%20a%20Service%20Area.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Service%20Areas/Delete%20a%20Service%20Area.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Service%20Areas/Retrieve%20a%20Service%20Area.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Service%20Areas/.resources/Retrieve%20a%20Service%20Area.resources/examples/OK.example.yaml), [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Service%20Areas/Update%20a%20Service%20Area.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Service%20Quotes/Query%20Service%20Quotes.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Service%20Rates/Create%20a%20Service%20Rate.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Service%20Rates/Delete%20a%20Service%20Rate.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Service%20Rates/Update%20a%20Service%20Rate.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Tracking%20Numbers/Create%20a%20Tracking%20Number.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Tracking%20Numbers/Delete%20a%20Tracking%20Number.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Tracking%20Numbers/Query%20Tracking%20Numbers.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Tracking%20Numbers/Retrieve%20a%20Tracking%20Number.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Tracking%20Statuses/Create%20a%20Tracking%20Status.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Tracking%20Statuses/Delete%20a%20Tracking%20Status.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Tracking%20Statuses/Query%20Tracking%20Statuses.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Tracking%20Statuses/Retrieve%20a%20Tracking%20Status.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Tracking%20Statuses/Update%20a%20Tracking%20Status.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Vehicles/Create%20a%20Vehicle.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Vehicles/.resources/Create%20a%20Vehicle.resources/examples/Created.example.yaml), [404](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Vehicles/.resources/Create%20a%20Vehicle.resources/examples/Not%20Found.example.yaml), [422](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Vehicles/Delete%20a%20Vehicle.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Vehicles/Expand%20a%20Vehicle.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Vehicles/Expand%20a%20Vehicle%20Scalar.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Vehicles/Query%20Vehicles.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Vehicles/Retrieve%20a%20Vehicle.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Vehicles/Update%20a%20Vehicle.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Vendors/Create%20a%20Vendor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Vendors/Delete%20a%20Vendor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Vendors/Query%20Vendors.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Vendors/Retrieve%20a%20Vendor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Vendors/Update%20a%20Vendor.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Work%20Orders/Create%20a%20Work%20Order.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Work%20Orders/Delete%20a%20Work%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Work%20Orders/Query%20Work%20Orders.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Work%20Orders/Retrieve%20a%20Work%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Work%20Orders/Send%20Work%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Work%20Orders/Update%20a%20Work%20Order.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Zones/Create%20a%20Zone.request.yaml)) | [201](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Zones/.resources/Create%20a%20Zone.resources/examples/Create%20a%20Zone.example.yaml), [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Zones/Delete%20a%20Zone.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Zones/Query%20Zones.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Zones/Retrieve%20a%20zone.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/postman/collections/Fleetbase%20API/Zones/Update%20a%20Zone.request.yaml)) | [200](https://github.com/fleetbase/postman/blob/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/7fe06b7c5e415a9aa292869e9037910896b049ad/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/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 | diff --git a/docs/api-examples.md b/docs/api-examples.md index 911cc7f..94e9e8d 100644 --- a/docs/api-examples.md +++ b/docs/api-examples.md @@ -1,6 +1,6 @@ # Fleetbase PHP SDK API examples -These 264 examples are generated from the locked official Postman contract. CI executes every fenced snippet against a hermetic PSR-18 transport. +These 270 examples are generated from the locked official Postman contract. CI executes every fenced snippet against a hermetic PSR-18 transport. Create `$fleetbase` once as shown in the README, then use the relevant service call below. Fixture identifiers and payloads are illustrative; replace them with values from your application. @@ -1465,6 +1465,109 @@ $result = $fleetbase->geofences->listGeofenceEvents( ); ``` +## Inspections + +### List Inspection Forms + +Lists the inspection forms the organisation has published, newest first. Draft and archived forms are never listed: a driver can only file against a published one. Each form carries its structure as `grouped_fields` — the groups of typed fields a driver fills in — so a list is enough to render a form picker without reading each one. Send `vehicle` to narrow the list to what applies to one vehicle — forms bound to that vehicle, and forms bound to nothing, which are the organisation-wide ones. Send `type` to narrow by form type, as one value or a comma separated list. + +`GET {{base_url}}/{{namespace}}/inspection-forms` + +```php +$result = $fleetbase->inspectionForms->listInspectionForms( + [ + 'vehicle' => 'vehicle_id-fixture', + ] +); +``` + +### 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. + +`GET {{base_url}}/{{namespace}}/inspections` + +```php +$result = $fleetbase->inspections->listInspections( + [ + 'driver' => 'driver_id-fixture', + ] +); +``` + +### 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. + +`GET {{base_url}}/{{namespace}}/vehicles/:id/inspections` + +```php +$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. + +`GET {{base_url}}/{{namespace}}/inspections/:id` + +```php +$result = $fleetbase->inspections->retrieveInspection($inspectionId); +``` + +### Retrieve an Inspection Form + +Retrieves one published inspection form with its structure and `settings`. A form is groups of typed fields. `grouped_fields` is what a driver renders: one entry per group, in the order the builder laid them out, each with a `name`, a `meta.grid_size` and its `fields`. A field carries an `id`, a `name`, a `label`, a `type` — `pass-fail`, `input`, `textarea`, `number`, `select`, `radio-button`, `boolean`, `date-picker`, `date-time-input`, `file-upload` or `signature` — plus `required`, `options` and `meta`. A `pass-fail` field's `meta` says what happens when it fails: the default `severity`, whether a photo or a comment is required, whether the defect takes the vehicle out of service (`unsafe_on_fail`), and any `instructions`. A `number` field's `meta` may name its `unit` and the `role` it plays, such as `odometer`. The first cut's flat `items` checklist is still answered, read-only, for forms that have not been rebuilt; a form built from fields answers both, and `grouped_fields` is the one to render. A form that is not published — a draft, or one that has been archived — answers 404, the same as one that does not exist: to a driver, a form that cannot be filled in is not there. + +`GET {{base_url}}/{{namespace}}/inspection-forms/:id` + +```php +$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. + +`POST {{base_url}}/{{namespace}}/inspections` + +```php +$result = $fleetbase->inspections->submitInspection( + [ + 'inspection_form' => 'inspection_form_id-fixture', + 'driver' => 'driver_id-fixture', + 'vehicle' => 'vehicle_id-fixture', + 'started_at' => '2026-09-09T07:10:00Z', + 'odometer' => 120400, + 'engine_hours' => 3100, + 'location' => [ + 'latitude' => 1.3521, + 'longitude' => 103.8198, + ], + 'custom_field_values' => [], + 'item_results' => [ + [ + 'item_key' => 'brakes', + 'label' => 'Brakes', + 'category' => 'Safety', + 'passed' => false, + 'severity' => 'critical', + 'comments' => 'Pedal is soft.', + 'photos' => [ + 'proof_photo_base64-fixture', + ], + ], + [ + 'item_key' => 'lights', + 'label' => 'Lights', + 'category' => 'Safety', + 'passed' => true, + ], + ], + ] +); +``` + ## Issues ### Create an Issue diff --git a/docs/release-checklist.md b/docs/release-checklist.md index c4c7267..14e704b 100644 --- a/docs/release-checklist.md +++ b/docs/release-checklist.md @@ -1,37 +1,38 @@ -# 1.3.0 release checklist +# 1.4.0 release checklist The release workflow starts automatically when a semantic `release/` branch is merged into `main`. Publication remains subject to the protected `release` environment policy. ## Maintainer decisions before publication - Fleetbase ownership and authorization to publish the new release under `AGPL-3.0-or-later` was confirmed by the maintainer. -- An 85% minimum mutation score was approved. Measure the 1.3.0 candidate and record the figure here before publication; the 1.1.2 candidate measured 87.85% with 100% mutation-code coverage, four timeouts, and no ignored source. +- Retain the approved 85% minimum mutation score and 100% line and branch coverage gates; review the fresh 1.4.0 evidence before publication. +- Confirm Fleet-Ops PR #319's inspection API is deployed in the intended target. The pinned overlay validates source compatibility, not published-image availability. - Select protected `release` environment approvers and the signing/attestation identity. - Verify Packagist ownership and the GitHub update hook. - Review the coordinated Fleetbase API-reference generator update. ## Repository preparation -1. Create `release/1.3.0` from `main` after the workflow repairs, update its dated changelog section and `docs/releases/1.3.0.md`, and open a recovery pull request to `main`. The original `release/v1.3.0` attempt did not publish a release. -2. Require every pull-request check, including the disposable 264-request SDK contract, before merge. +1. Create `release/1.4.0` from `main`, update its dated changelog section and `docs/releases/1.4.0.md`, and open a pull request to `main`. +2. Require every pull-request check, including the disposable 270-request SDK contract, before merge. 3. Configure required checks and the protected `release` environment without granting workflow bypasses. 4. Add `POSTMAN_API_KEY` at repository or organization scope and retain the live-contract artifacts. 5. Review the pull-request release-candidate archive, SBOM, checksums, coverage summary, API matrix, and workflow logs. ## Publication -1. Merge the reviewed `release/1.3.0` recovery pull request into `main`; this automatically starts the repaired release workflow and derives version `1.3.0`. +1. Merge the reviewed `release/1.4.0` pull request into `main`; this automatically starts the release workflow and derives version `1.4.0`. 2. Confirm the live SDK contract and validation jobs pass, then approve the protected `release` environment if an approval rule is configured. -3. Confirm the immutable `1.3.0` tag and GitHub Release target the reviewed commit and contain the expected artifacts and provenance. -4. Verify GitHub and Packagist identify `AGPL-3.0-or-later` for 1.3.0 while 1.0.x tags retain their original MIT terms. +3. Confirm the immutable `1.4.0` tag and GitHub Release target the reviewed commit and contain the expected artifacts and provenance. +4. Verify GitHub and Packagist identify `AGPL-3.0-or-later` for 1.4.0 while 1.0.x tags retain their original MIT terms. 5. Install the exact public package into clean plain PHP, Laravel, and Symfony fixtures: ```bash -composer require fleetbase/fleetbase-php:1.3.0 +composer require fleetbase/fleetbase-php:1.4.0 composer install --no-dev --optimize-autoloader ``` -6. Confirm the public API reference renders the checked-in 1.3.0 PHP examples. +6. Synchronize the published 1.4.0 PHP example catalog into the website separately; API-reference updates no longer depend on SDK catalog completeness. Never reuse, move, or rewrite a published tag. If validation fails after publication, publish a new patch release. diff --git a/docs/releases/1.4.0.md b/docs/releases/1.4.0.md new file mode 100644 index 0000000..52aa45d --- /dev/null +++ b/docs/releases/1.4.0.md @@ -0,0 +1,13 @@ +# Fleetbase PHP SDK 1.4.0 + +Adds all six driver-facing inspection endpoints from the official Postman contract: + +- `inspectionForms->listInspectionForms($filters)` and `retrieveInspectionForm($id)`. +- `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. + +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. + +Merging the reviewed `release/1.4.0` PR starts release validation and the live SDK contract, followed by the existing release-environment gate. No existing tag is changed. diff --git a/src/Fleetbase.php b/src/Fleetbase.php index 2dcb1e6..bcb4f51 100644 --- a/src/Fleetbase.php +++ b/src/Fleetbase.php @@ -24,6 +24,8 @@ use Fleetbase\Sdk\Services\FuelReportService; use Fleetbase\Sdk\Services\FuelTransactionService; use Fleetbase\Sdk\Services\GeofenceService; +use Fleetbase\Sdk\Services\InspectionFormService; +use Fleetbase\Sdk\Services\InspectionService; use Fleetbase\Sdk\Services\IssueService; use Fleetbase\Sdk\Services\LabelService; use Fleetbase\Sdk\Services\ManifestService; @@ -77,6 +79,12 @@ class Fleetbase /** @var TrailerService */ public $trailers; + /** @var InspectionService */ + public $inspections; + + /** @var InspectionFormService */ + public $inspectionForms; + /** @var VendorService */ public $vendors; @@ -181,6 +189,8 @@ public function __construct(string $publicKey, array $config = [], bool $debug = $this->drivers = new DriverService($this->client); $this->vehicles = new VehicleService($this->client); $this->trailers = new TrailerService($this->client); + $this->inspections = new InspectionService($this->client); + $this->inspectionForms = new InspectionFormService($this->client); $this->vendors = new VendorService($this->client); $this->contacts = new ContactService($this->client); $this->serviceAreas = new ServiceAreaService($this->client); @@ -361,6 +371,16 @@ public function trailers(): TrailerService return $this->trailers; } + public function inspections(): InspectionService + { + return $this->inspections; + } + + public function inspectionForms(): InspectionFormService + { + return $this->inspectionForms; + } + public function equipment(): EquipmentService { return $this->equipment; diff --git a/src/Resources/Inspection.php b/src/Resources/Inspection.php new file mode 100644 index 0000000..8fdc29b --- /dev/null +++ b/src/Resources/Inspection.php @@ -0,0 +1,18 @@ + $parameters + * @param array $options + * @return mixed + */ + public function listInspectionForms(array $parameters = [], array $options = []) + { + return $this->endpointFromArguments('GET', '{{base_url}}/{{namespace}}/inspection-forms', [], 'query', func_get_args()); + } + + /** + * Retrieve an Inspection Form. + * + * @param scalar|\Fleetbase\Sdk\Resource|array $parameters First path value, or the legacy endpoint envelope. + * @param mixed $options Request data, a second path value, or legacy request options. + * @param array $requestOptions + * @return mixed + */ + public function retrieveInspectionForm($parameters = [], $options = [], $requestOptions = []) + { + return $this->endpointFromArguments('GET', '{{base_url}}/{{namespace}}/inspection-forms/:id', ['id'], 'query', func_get_args()); + } +} diff --git a/src/Services/Concerns/InspectionServiceEndpoints.php b/src/Services/Concerns/InspectionServiceEndpoints.php new file mode 100644 index 0000000..ec23803 --- /dev/null +++ b/src/Services/Concerns/InspectionServiceEndpoints.php @@ -0,0 +1,52 @@ + $parameters + * @param array $options + * @return mixed + */ + public function listInspections(array $parameters = [], array $options = []) + { + return $this->endpointFromArguments('GET', '{{base_url}}/{{namespace}}/inspections', [], 'query', func_get_args()); + } + + /** + * Retrieve an Inspection. + * + * @param scalar|\Fleetbase\Sdk\Resource|array $parameters First path value, or the legacy endpoint envelope. + * @param mixed $options Request data, a second path value, or legacy request options. + * @param array $requestOptions + * @return mixed + */ + public function retrieveInspection($parameters = [], $options = [], $requestOptions = []) + { + return $this->endpointFromArguments('GET', '{{base_url}}/{{namespace}}/inspections/:id', ['id'], 'query', func_get_args()); + } + + /** + * Submit an Inspection. + * + * @param array $parameters + * @param array $options + * @return mixed + */ + public function submitInspection(array $parameters = [], array $options = []) + { + return $this->endpointFromArguments('POST', '{{base_url}}/{{namespace}}/inspections', [], 'body', func_get_args()); + } +} diff --git a/src/Services/Concerns/VehicleServiceEndpoints.php b/src/Services/Concerns/VehicleServiceEndpoints.php index 4072638..4d5ee0a 100644 --- a/src/Services/Concerns/VehicleServiceEndpoints.php +++ b/src/Services/Concerns/VehicleServiceEndpoints.php @@ -38,6 +38,19 @@ public function deleteVehicle($parameters = [], $options = [], $requestOptions = return $this->endpointFromArguments('DELETE', '{{base_url}}/{{namespace}}/vehicles/:id', ['id'], 'body', func_get_args()); } + /** + * List Vehicle Inspections. + * + * @param scalar|\Fleetbase\Sdk\Resource|array $parameters First path value, or the legacy endpoint envelope. + * @param mixed $options Request data, a second path value, or legacy request options. + * @param array $requestOptions + * @return mixed + */ + public function listVehicleInspections($parameters = [], $options = [], $requestOptions = []) + { + return $this->endpointFromArguments('GET', '{{base_url}}/{{namespace}}/vehicles/:id/inspections', ['id'], 'query', func_get_args()); + } + /** * List Vehicle Trailers. * diff --git a/src/Services/InspectionFormService.php b/src/Services/InspectionFormService.php new file mode 100644 index 0000000..01029d8 --- /dev/null +++ b/src/Services/InspectionFormService.php @@ -0,0 +1,27 @@ + $options */ + public function __construct(HttpClient $client, array $options = []) + { + parent::__construct('InspectionForm', $client, array_merge(['namespace' => 'inspection-forms'], $options)); + } +} diff --git a/src/Services/InspectionService.php b/src/Services/InspectionService.php new file mode 100644 index 0000000..1466b7f --- /dev/null +++ b/src/Services/InspectionService.php @@ -0,0 +1,27 @@ + $options */ + public function __construct(HttpClient $client, array $options = []) + { + parent::__construct('Inspection', $client, array_merge(['namespace' => 'inspections'], $options)); + } +} diff --git a/tests/Fleetbase/FleetbaseTest.php b/tests/Fleetbase/FleetbaseTest.php index f19ffdf..ad72af0 100644 --- a/tests/Fleetbase/FleetbaseTest.php +++ b/tests/Fleetbase/FleetbaseTest.php @@ -85,6 +85,8 @@ private static function services(): array 'drivers' => \Fleetbase\Sdk\Services\DriverService::class, 'vehicles' => \Fleetbase\Sdk\Services\VehicleService::class, 'trailers' => \Fleetbase\Sdk\Services\TrailerService::class, + 'inspections' => \Fleetbase\Sdk\Services\InspectionService::class, + 'inspectionForms' => \Fleetbase\Sdk\Services\InspectionFormService::class, 'vendors' => \Fleetbase\Sdk\Services\VendorService::class, 'contacts' => \Fleetbase\Sdk\Services\ContactService::class, 'serviceAreas' => \Fleetbase\Sdk\Services\ServiceAreaService::class, diff --git a/tests/Fleetbase/InspectionTest.php b/tests/Fleetbase/InspectionTest.php new file mode 100644 index 0000000..f6afa9b --- /dev/null +++ b/tests/Fleetbase/InspectionTest.php @@ -0,0 +1,91 @@ + '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], + ], + ]; + $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":[]}'), + ]); + $service = new InspectionService($client); + $options = ['headers' => ['Idempotency-Key' => 'inspection-offline-123']]; + $first = $service->submitInspection($payload, $options); + $replay = $service->submitInspection(['body' => $payload], $options); + self::assertEquals($first, $replay); + foreach ($this->history as $transaction) { + self::assertIsArray($transaction); + $request = $transaction['request'] ?? null; + self::assertInstanceOf(RequestInterface::class, $request); + self::assertSame('POST', $request->getMethod()); + self::assertSame('/v1/inspections', $request->getUri()->getPath()); + self::assertSame('inspection-offline-123', $request->getHeaderLine('Idempotency-Key')); + self::assertSame($payload, json_decode((string) $request->getBody(), true)); + } + } + + public function testResourceHelpersUseSeparateFormAndSubmissionNamespaces(): void + { + $client = $this->mockHttpClient([ + new Response(200, [], '[{"id":"iform_test","grouped_fields":[{"name":"Safety","fields":[]}]}]'), + new Response(200, [], '{"id":"inspection_test","item_results":[],"files":[]}'), + ]); + $forms = (new InspectionFormService($client))->query(['vehicle' => 'vehicle_test']); + self::assertIsArray($forms); + self::assertInstanceOf(InspectionForm::class, $forms[0]); + self::assertEquals([(object) ['name' => 'Safety', 'fields' => []]], $forms[0]->getAttribute('grouped_fields')); + $inspection = (new InspectionService($client))->findRecord('inspection_test'); + self::assertInstanceOf(Inspection::class, $inspection); + foreach ($this->history as $index => $transaction) { + self::assertIsArray($transaction); + $request = $transaction['request'] ?? null; + self::assertInstanceOf(RequestInterface::class, $request); + self::assertSame($index === 0 ? '/v1/inspection-forms' : '/v1/inspections/inspection_test', $request->getUri()->getPath()); + } + } + + public function testVehicleHistoryAcceptsPositionalIdAndDirectFilters(): void + { + $service = new VehicleService($this->mockHttpClient([new Response(200, [], '[]')])); + $service->listVehicleInspections('vehicle_test', ['status' => 'open', 'limit' => 10]); + $transaction = $this->history[0]; + self::assertIsArray($transaction); + $request = $transaction['request'] ?? null; + self::assertInstanceOf(RequestInterface::class, $request); + self::assertSame('/v1/vehicles/vehicle_test/inspections', $request->getUri()->getPath()); + parse_str($request->getUri()->getQuery(), $query); + self::assertSame(['status' => 'open', 'limit' => '10'], $query); + } + + public function testSubmissionValidationErrorIsPreserved(): void + { + $service = new InspectionService($this->mockHttpClient([ + new Response(422, [], '{"error":"A comment is required when this inspection field fails."}'), + ])); + $this->expectException(ValidationException::class); + $this->expectExceptionMessage('A comment is required'); + $service->submitInspection(['inspection_form' => 'iform_test', 'driver' => 'driver_test']); + } +} From c5a3d3016b9f7b82bae7aa8eeb321f761ad6e812 Mon Sep 17 00:00:00 2001 From: "Ronald A. Richardson" Date: Sat, 12 Sep 2026 20:34:30 +0800 Subject: [PATCH 2/3] docs: clarify inspection contract source verification --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 59daa35..2be9d69 100644 --- a/README.md +++ b/README.md @@ -317,7 +317,7 @@ composer test:coverage Tests are hermetic by default and must not use production credentials or mutate a shared API. CI enforces PHP 7.4–8.5 with lowest/latest dependencies, PHPStan at max level, generated-contract drift, compatibility snapshots, exact 100% line and branch coverage, consumer fixtures, security checks, and archive inspection. See [CONTRIBUTING.md](CONTRIBUTING.md) for contribution requirements. -The separate `Disposable API contract` workflow uses Fleetbase's canonical contract bootstrap: it pulls the published Fleetbase API image, runs the non-interactive installer with the same CI configuration used by Core API and Fleet-Ops, and invokes Fleetbase's shared Postman seed-and-mint action. Both official collections are routed through a local PHP SDK bridge, and CI then proves all 220 locked requests invoked their mapped SDK methods. This is an isolated runner-local Fleetbase instance, not a production or shared API. +The separate `Disposable API contract` workflow uses Fleetbase's canonical contract bootstrap: it pulls the published Fleetbase API image and runs the non-interactive installer with the same CI configuration used by Core API and Fleet-Ops. When the contract lock specifies a newer Fleet-Ops source, CI overlays that exact revision, rebuilds the autoloader, migrates and reloads workers before invoking Fleetbase's shared seed-and-mint action. Both official collections are routed through a local PHP SDK bridge, and CI then proves all 270 locked requests invoked their mapped SDK methods. This is an isolated runner-local Fleetbase instance, not a production or shared API; a source-overlay run does not prove those endpoints are deployed in a published image. ## Security and support From 98be6d48d440c24e566bef1dbdbaa2f341596ff0 Mon Sep 17 00:00:00 2001 From: "Ronald A. Richardson" Date: Mon, 14 Sep 2026 12:16:39 +0800 Subject: [PATCH 3/3] fix: pin corrected inspection API for SDK contract --- contracts/contract-lock.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/contract-lock.json b/contracts/contract-lock.json index 3956e7c..e6f807c 100644 --- a/contracts/contract-lock.json +++ b/contracts/contract-lock.json @@ -1,6 +1,6 @@ { "schema_version": 1, - "generated_at": "2026-09-12", + "generated_at": "2026-09-14", "sdk_baselines": { "required_compatibility": { "version": "1.0.2", @@ -40,7 +40,7 @@ "fleetops": { "repository": "https://github.com/fleetbase/fleetops", "ref": "refs/pull/319/head", - "commit": "0d11583d0484ad04761ca0cd6a1025cec4aed91c" + "commit": "db671b6fac44b92757e9004896ac60c594917ce3" } } }