techrar docs
Home
Solutions
Solutions
  • eCommerce SaaS
  • Meals SaaS
  • Meals Marketplaces
API
API
  • Merchant APIs
  • Customer App APIs
  • Meals APIs
Techrar Connect
Home
Solutions
Solutions
  • eCommerce SaaS
  • Meals SaaS
  • Meals Marketplaces
API
API
  • Merchant APIs
  • Customer App APIs
  • Meals APIs
Techrar Connect
  1. Fulfillments
  • Customer Account
    • Registration
      • Register Customer
      • Confirm Customer Registration
    • User Authentication
      • Request OTP
      • Get Access Token
      • Refresh Access Token
    • Customer Profile
      • Profile Details
      • Wallet Details
      • Referral Details
      • Update Platform Version
      • Activate/Create FCM Token
      • FCM Token
      • Delete Customer Account
      • Update Language
      • Update Avatar
      • Update Profile
    • Customer Locations
      • List Locations
      • Location Details
      • Create Location
      • Update Location
      • Update Location Image
      • Delete Location
    • List Received Notifications
  • Items
    • List Items
    • Item Details
    • List Item Categories
    • Item Category Details
    • List Modifier Categories
    • Item Config Details
    • List Bundle Categories
  • Orders
    • List Orders
    • Order Details
    • List Recurring Purchases
    • Recurring Purchase Details
    • Recurring Purchase Details
  • Subscriptions
    • List Subscriptions
    • Subscription Details
    • Cancel Subscription Auto Renewal
  • Fulfillments
    • List Fulfillments
      GET
    • Fulfillment Details
      GET
    • Update Fulfillment Details
      PATCH
  • Payment Methods
    • List Payment Methods
    • Delete Payment Method
    • List Enabled Payment Providers
  • Checkout
    • Checkout Config Details
    • Create Cart
    • Update Cart
    • Cart Details
    • List Pickup Locations
    • List Featured Vouchers
    • Get Courier Options
    • Checkout
  • Sales Channels
    • Orders
      • List Channel Subscriptions
      • Channel Subscription Details
      • List Channel Orders
      • Channel Order Details
      • Cancel Channel Subscription
    • Meals Checkout
      • Apply Voucher
      • Redeem
      • Get Discount
      • Place Order
    • List Channel Providers
  • Utilities
    • List Supported Cities
    • Supported City Details
  1. Fulfillments

Fulfillment Details

GET
https://api.techrar.com/order/v1/fulfillments/{fulfillment_order_id}/
This endpoint allows you to get a customer fulfillment order details by passing the fulfillment_order_id as a path parameter.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Header Params

Responses

🟢200Success
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.techrar.com/order/v1/fulfillments//' \
--header 'app-id: 4' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "id": 298,
    "created_at": "2025-07-13T12:38:04.891591+03:00",
    "order_id": 351,
    "invoice_id": 431,
    "status": "ready_for_pickup",
    "date": null,
    "time": null,
    "service_type": "delivery",
    "location": {
        "id": 2,
        "custom_fields": null,
        "on_demand_supported": false,
        "subscription_supported": false,
        "location_url": "https://maps.google.com/?q=21.5786337,39.1536752",
        "city": {
            "id": 1,
            "custom_fields": null,
            "app_id": null,
            "created_at": "2022-03-12T16:51:57.964819+03:00",
            "modified_at": "2023-02-19T18:29:28.335083+03:00",
            "is_deleted": false,
            "deleted_at": null,
            "ordering": 0,
            "name_ar": "جده",
            "name_en": "Jeddah",
            "country_code": "SA",
            "keywords": "Jeddah,jeddah,جدة,جده",
            "is_supported": true
        },
        "app_id": null,
        "created_at": "2022-04-13T15:16:55.721015+03:00",
        "modified_at": "2025-01-28T17:13:30.592617+03:00",
        "is_deleted": false,
        "deleted_at": null,
        "ordering": 0,
        "name_ar": "home",
        "name_en": "home",
        "longitude": "39.1536752",
        "latitude": "21.5786337",
        "address1": "6438 ابن عديس، حي السلامة، جدة 23436 3083، السعودية",
        "address2": "جدة",
        "place_id": "ChIJ7SIhYS7bwxURWDIHU_Wzggk",
        "postal_code": "23436",
        "formatted_address": "ابن عديس، 6438 ibn Udays st. - al-salamh-dist jeddah 3083-23436 Villa 16، جدة 23436،، As Salamah, Jeddah 23436, Saudi Arabia",
        "district": "As Salamah",
        "district_ar": null,
        "city_name_en": "Jeddah",
        "city_name_ar": null,
        "route": null,
        "street_number": null,
        "is_synced": true,
        "type": "home",
        "description": "عماره ٢٢، شقه ٣",
        "is_default": false,
        "image": "/media/uploads/location/images/2025/01/28/61ebe418-7fb0-4d4c-9e73-7a417997e713.png",
        "deleted_from": null,
        "zone": 1,
        "customer_profile": 1
    },
    "pickup_location": null,
    "city_en": "Jeddah",
    "city_ar": "جدة",
    "district_en": "As Salamah Dist.",
    "district_ar": "حي السلامة",
    "fulfillments": [
        {
            "id": 102669,
            "created_at": "2025-07-13T12:38:04.882318+03:00",
            "invoice_item_id": 468,
            "item": {
                "id": 121,
                "custom_fields": {
                    "test": "test"
                },
                "images": [],
                "discount": {
                    "is_applied": false,
                    "is_trial_applied": false,
                    "is_usage_price": false,
                    "price_after_discount_no_trial": 12.0,
                    "price_after_discount": 12.0
                },
                "stock": {
                    "in_stock": true,
                    "qty": 100
                },
                "modifiers": [
                    {
                        "id": 3,
                        "ordering": 0,
                        "name_en": "mod",
                        "name_ar": "mod",
                        "values": [
                            {
                                "id": 6,
                                "ordering": 0,
                                "name_en": "two",
                                "name_ar": "two"
                            },
                            {
                                "id": 5,
                                "ordering": 0,
                                "name_en": "one",
                                "name_ar": "one"
                            }
                        ]
                    }
                ],
                "variants": [
                    {
                        "id": 121,
                        "custom_fields": {
                            "test": "test"
                        },
                        "images": [],
                        "discount": {
                            "is_applied": false,
                            "is_trial_applied": false,
                            "is_usage_price": false,
                            "price_after_discount_no_trial": 12.0,
                            "price_after_discount": 12.0
                        },
                        "stock": {
                            "in_stock": true,
                            "qty": 100
                        },
                        "plan_config": null,
                        "off_days": [],
                        "off_dates": [],
                        "variant_title_en": "two",
                        "variant_title_ar": "two",
                        "modifier_values": [
                            6
                        ],
                        "app_id": 86,
                        "ordering": 0,
                        "type": "product",
                        "service_type": "delivery",
                        "sku": "17502362717823294",
                        "price": 12.0,
                        "name_en": "Variant",
                        "name_ar": "Variant",
                        "description_en": "",
                        "description_ar": "",
                        "is_plan_only": false,
                        "is_plan_enabled": false,
                        "served_from_date": null,
                        "served_to_date": null,
                        "served_from_time": null,
                        "served_to_time": null
                    },
                    {
                        "id": 122,
                        "custom_fields": {
                            "test": "test_vaaar_1"
                        },
                        "images": [],
                        "discount": {
                            "is_applied": false,
                            "is_trial_applied": false,
                            "is_usage_price": false,
                            "price_after_discount_no_trial": 11.0,
                            "price_after_discount": 11.0
                        },
                        "stock": {
                            "in_stock": true,
                            "qty": 100
                        },
                        "plan_config": null,
                        "off_days": [],
                        "off_dates": [],
                        "variant_title_en": "one",
                        "variant_title_ar": "one",
                        "modifier_values": [
                            5
                        ],
                        "app_id": 86,
                        "ordering": 0,
                        "type": "product",
                        "service_type": "delivery",
                        "sku": "1750236379191",
                        "price": 11.0,
                        "name_en": "Variant",
                        "name_ar": "Variant",
                        "description_en": "",
                        "description_ar": "",
                        "is_plan_only": false,
                        "is_plan_enabled": false,
                        "served_from_date": null,
                        "served_to_date": null,
                        "served_from_time": null,
                        "served_to_time": null
                    }
                ],
                "varies_on": "modifiers",
                "bundle_categories": [],
                "plan_config": null,
                "off_days": [],
                "off_dates": [],
                "app_id": 86,
                "ordering": 0,
                "type": "product",
                "service_type": "delivery",
                "sku": "17502362717823294",
                "price": 12.0,
                "name_en": "Variant",
                "name_ar": "Variant",
                "description_en": "",
                "description_ar": "",
                "is_plan_only": false,
                "is_plan_enabled": false,
                "served_from_date": null,
                "served_to_date": null,
                "served_from_time": null,
                "served_to_time": null,
                "categories": [
                    16
                ]
            },
            "name_en": "Variant",
            "name_ar": "Variant",
            "status": "pending",
            "total_amount": 0.0,
            "addons": []
        }
    ],
    "shipment": {
        "id": 16,
        "created_at": "2025-07-13 20:33:29.762330+00:00",
        "courier_id": 1,
        "courier_name": "OTO Flex",
        "shipment_number": "TR1752438809",
        "tracking_number": "163db926",
        "tracking_url": "http://localhost:8000/order/v1/shipments/16/track/",
        "is_reversed": false,
        "origin_country_code": "SA",
        "origin_city": "Jeddah",
        "origin_lat": 21.590375041386423,
        "origin_lng": 39.15281625274453,
        "destination_country_code": "SA",
        "destination_city": "Jeddah",
        "destination_district": "As Salamah Dist.",
        "destination_lat": 21.5786337,
        "destination_lng": 39.1536752
    }
}
Modified at 2026-06-01 12:38:57
Previous
List Fulfillments
Next
Update Fulfillment Details
Built with