{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "https:\/\/api.citycourier.org\/public"
        }
    ],
    "info": {
        "name": "City Courier API Documentation",
        "_postman_id": "76fe035c-ba8e-462e-b19d-ec92b24e7bb5",
        "description": "",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Authentication",
            "description": "\nAPIs for managing user authentication",
            "item": [
                {
                    "name": "User Login",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"loginID\":\"user123\",\"email\":\"user@example.com\",\"password\":\"password123\"}"
                        },
                        "description": "Authenticate a user and return an access token.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"success\": true,\n \"data\": {\n   \"user\": {\n     \"id\": 1,\n     \"loginID\": \"user123\",\n     \"email\": \"user@example.com\",\n     \"profile\": {\n       \"name\": \"John Doe\",\n       \"phone\": \"+1234567890\"\n     }\n   },\n   \"token\": \"1|abcdefghijklmnopqrstuvwxyz\"\n },\n \"message\": \"Login successful\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n \"success\": false,\n \"message\": \"The provided credentials are incorrect.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Authenticated User",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get the details of the currently authenticated user."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"success\": true,\n \"data\": {\n   \"user\": {\n     \"id\": 1,\n     \"loginID\": \"user123\",\n     \"email\": \"user@example.com\",\n     \"profile\": {\n       \"name\": \"John Doe\",\n       \"phone\": \"+1234567890\"\n     }\n   }\n },\n \"message\": \"User details retrieved successfully\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Cities and Branches",
            "description": "\nAPIs for managing cities and their branches",
            "item": [
                {
                    "name": "Get all cities",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/cities",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/cities"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve a list of all cities with their basic information.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"success\": true,\n \"data\": [\n   {\n     \"id\": 1,\n     \"name\": \"New York\",\n     \"code\": \"NYC\",\n     \"zone\": \"East\"\n   },\n   {\n     \"id\": 2,\n     \"name\": \"Los Angeles\",\n     \"code\": \"LAX\",\n     \"zone\": \"West\"\n   }\n ],\n \"message\": \"Cities retrieved successfully\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\n \"success\": false,\n \"message\": \"Internal server error\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get branches by city",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/cities\/:cityId\/branches",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/cities\/:cityId\/branches",
                            "variable": [
                                {
                                    "id": "cityId",
                                    "key": "cityId",
                                    "value": "1",
                                    "description": "The ID of the city."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve all branches for a specific city with their details.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"success\": true,\n \"data\": [\n   {\n     \"id\": 1,\n     \"name\": \"Main Branch\",\n     \"code\": \"NYC-MAIN\",\n     \"type\": \"Main\",\n     \"city_id\": 1,\n     \"city\": {\n       \"id\": 1,\n       \"name\": \"New York\",\n       \"code\": \"NYC\",\n       \"zone\": \"East\"\n     }\n   },\n   {\n     \"id\": 2,\n     \"name\": \"Downtown Branch\",\n     \"code\": \"NYC-DOWN\",\n     \"type\": \"Sub\",\n     \"city_id\": 1,\n     \"city\": {\n       \"id\": 1,\n       \"name\": \"New York\",\n       \"code\": \"NYC\",\n       \"zone\": \"East\"\n     }\n   }\n ],\n \"message\": \"Branches retrieved successfully\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n \"success\": false,\n \"message\": \"City not found\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\n \"success\": false,\n \"message\": \"Internal server error\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Consignment Management",
            "description": "\nAPIs for managing consignments",
            "item": [
                {
                    "name": "List all consignments",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/consignments",
                            "query": [
                                {
                                    "key": "from_date",
                                    "value": "2024-03-01",
                                    "description": "Filter consignments created after this date.",
                                    "disabled": false
                                },
                                {
                                    "key": "to_date",
                                    "value": "2024-03-20",
                                    "description": "Filter consignments created before this date.",
                                    "disabled": false
                                },
                                {
                                    "key": "status",
                                    "value": "booked",
                                    "description": "Filter by consignment status (case-insensitive).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/consignments?from_date=2024-03-01&to_date=2024-03-20&status=booked"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get a list of all consignments. The results are filtered based on user role:\n- Admin\/Manager users can see all consignments\n- Regular users can only see their own consignments",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"success\": true,\n \"data\": [\n   {\n     \"id\": 1,\n     \"consignment_no\": \"NYC-LAX-123456\",\n     \"status\": {\n       \"id\": 1,\n       \"name\": \"Booked\"\n     },\n     \"consigner\": {\n       \"name\": \"John Doe\",\n       \"phone\": \"+1234567890\",\n       \"address\": \"123 Main St\"\n     },\n     \"consignee\": {\n       \"name\": \"Jane Smith\",\n       \"phone\": \"+1987654321\",\n       \"address\": \"456 Oak St\"\n     },\n     \"branch\": {\n       \"id\": 1,\n       \"name\": \"Main Branch\"\n     },\n     \"created_at\": \"2024-03-20T10:00:00.000000Z\"\n   }\n ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get consignment details",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/consignments\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/consignments\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "0",
                                    "description": "The ID or consignment number of the consignment."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve detailed information about a specific consignment. Can be accessed by ID or consignment number.\nRegular users can only access their own consignments.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"success\": true,\n \"data\": {\n   \"id\": 1,\n   \"consignment_no\": \"NYC-LAX-123456\",\n   \"status\": {\n     \"id\": 1,\n     \"name\": \"Booked\"\n   },\n   \"consigner\": {\n     \"name\": \"John Doe\",\n     \"phone\": \"+1234567890\",\n     \"address\": \"123 Main St\",\n     \"cnic\": \"12345-6789012-3\"\n   },\n   \"consignee\": {\n     \"name\": \"Jane Smith\",\n     \"phone\": \"+1987654321\",\n     \"address\": \"456 Oak St\"\n   },\n   \"branch\": {\n     \"id\": 1,\n     \"name\": \"Main Branch\"\n   },\n   \"trackings\": [\n     {\n       \"id\": 1,\n       \"status\": \"Booked\",\n       \"created_at\": \"2024-03-20T10:00:00.000000Z\"\n     }\n   ],\n   \"originCity\": {\n     \"id\": 1,\n     \"name\": \"New York\"\n   },\n   \"destinationCity\": {\n     \"id\": 2,\n     \"name\": \"Los Angeles\"\n   }\n },\n \"message\": \"Consignment retrieved successfully\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n \"success\": false,\n \"message\": \"Consignment not found\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create new consignment",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/consignments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/consignments"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"origin\":1,\"destination\":2,\"service_type\":\"Express\",\"pieces\":\"2\",\"height\":\"10.5\",\"width\":\"15.2\",\"length\":\"20.0\",\"weight\":\"5.5\",\"consignerName\":\"John Doe\",\"consignerPhone\":\"+1234567890\",\"consignerAddress\":\"123 Main St\",\"consigneeName\":\"Jane Smith\",\"consigneePhone\":\"+1987654321\",\"consigneeAddress\":\"456 Oak St\\n\\nFor CLIENT users, additional fields:\",\"consignerPhone2\":\"+1234567891\",\"consignerCnic\":\"12345-6789012-3\",\"consigneePhone2\":\"+1987654322\",\"cod_type\":\"Prepaid\",\"orderId\":\"ORD123\",\"cod_amount\":\"1000\",\"declared_value\":\"5000\",\"special_instructions\":\"Handle with care\\n\\nFor non-CLIENT users, additional fields:\",\"goods_description\":\"Electronics\",\"price\":\"1000\",\"discount\":\"100\",\"total_price\":\"900\"}"
                        },
                        "description": "Create a new consignment with the provided details. The consignment will be created with 'Booked' status.\nDifferent fields are required based on user type (CLIENT vs others).",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n \"success\": true,\n \"data\": {\n   \"id\": 1,\n   \"consignment_no\": \"NYC-LAX-123456\",\n   \"status_id\": 1,\n   \"volumetric_weight\": 8.4,\n   \"chargeable_weight\": 10.5\n },\n \"message\": \"Consignment created successfully\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n \"success\": false,\n \"message\": \"Validation failed\",\n \"errors\": {\n   \"origin\": [\"The origin field is required.\"]\n }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update consignment",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/consignments\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/consignments\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "0",
                                    "description": "The ID or consignment number of the consignment to update."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"service_type\":\"Express\",\"origin\":1,\"destination\":2,\"pieces\":\"2\",\"height\":\"10.5\",\"width\":\"15.2\",\"length\":\"20.0\",\"weight\":\"5.5\",\"consignerName\":\"John Doe\",\"consignerPhone\":\"+1234567890\",\"consignerPhone2\":\"+1234567891\",\"consignerAddress\":\"123 Main St\",\"consignerCnic\":\"12345-6789012-3\",\"consigneeName\":\"Jane Smith\",\"consigneePhone\":\"+1987654321\",\"consigneePhone2\":\"+1987654322\",\"consigneeAddress\":\"456 Oak St\\n\\nFor CLIENT users, additional fields:\",\"cod_type\":\"Prepaid\",\"orderId\":\"ORD123\",\"cod_amount\":\"1000\",\"declared_value\":\"5000\",\"special_instructions\":\"Handle with care\\n\\nFor non-CLIENT users, additional fields:\",\"goods_description\":\"Electronics\",\"price\":\"1000\",\"discount\":\"100\",\"total_price\":\"900\"}"
                        },
                        "description": "Update an existing consignment's details. Only consignments with 'Booked' status can be updated.\nDifferent fields are required based on user type (CLIENT vs others).",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"success\": true,\n \"data\": {\n   \"id\": 1,\n   \"consignment_no\": \"NYC-LAX-123456\",\n   \"status_id\": 1\n },\n \"message\": \"Consignment updated successfully\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n \"success\": false,\n \"message\": \"Only consignments with Booked status can be updated\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n \"success\": false,\n \"message\": \"Consignment not found\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete consignment",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/consignments\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/consignments\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "0",
                                    "description": "The ID or consignment number of the consignment to delete."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Delete a specific consignment. Only consignments with 'Booked' status can be deleted.\nRegular users can only delete their own consignments.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"success\": true,\n \"message\": \"Consignment deleted successfully\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n \"success\": false,\n \"message\": \"Only consignments with Booked status can be deleted\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n \"success\": false,\n \"message\": \"Consignment not found\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get consignment tracking",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/consignments\/:id\/tracking",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/consignments\/:id\/tracking",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "0",
                                    "description": "The ID or consignment number of the consignment."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve tracking information for a specific consignment.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"success\": true,\n \"data\": [\n   {\n     \"id\": 1,\n     \"consignment_id\": 1,\n     \"status\": \"Booked\",\n     \"created_at\": \"2024-03-20T10:00:00.000000Z\",\n     \"updated_at\": \"2024-03-20T10:00:00.000000Z\"\n   }\n ],\n \"message\": \"Consignment tracking retrieved successfully\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n \"success\": false,\n \"message\": \"Consignment not found\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List all consignments",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/consignments",
                            "query": [
                                {
                                    "key": "from_date",
                                    "value": "2024-03-01",
                                    "description": "Filter consignments created after this date.",
                                    "disabled": false
                                },
                                {
                                    "key": "to_date",
                                    "value": "2024-03-20",
                                    "description": "Filter consignments created before this date.",
                                    "disabled": false
                                },
                                {
                                    "key": "status",
                                    "value": "booked",
                                    "description": "Filter by consignment status (case-insensitive).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/consignments?from_date=2024-03-01&to_date=2024-03-20&status=booked"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get a list of all consignments. The results are filtered based on user role:\n- Admin\/Manager users can see all consignments\n- Regular users can only see their own consignments",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"success\": true,\n \"data\": [\n   {\n     \"id\": 1,\n     \"consignment_no\": \"NYC-LAX-123456\",\n     \"status\": {\n       \"id\": 1,\n       \"name\": \"Booked\"\n     },\n     \"consigner\": {\n       \"name\": \"John Doe\",\n       \"phone\": \"+1234567890\",\n       \"address\": \"123 Main St\"\n     },\n     \"consignee\": {\n       \"name\": \"Jane Smith\",\n       \"phone\": \"+1987654321\",\n       \"address\": \"456 Oak St\"\n     },\n     \"branch\": {\n       \"id\": 1,\n       \"name\": \"Main Branch\"\n     },\n     \"created_at\": \"2024-03-20T10:00:00.000000Z\"\n   }\n ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get consignment details",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/consignment\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/consignment\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "0",
                                    "description": "The ID or consignment number of the consignment."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve detailed information about a specific consignment. Can be accessed by ID or consignment number.\nRegular users can only access their own consignments.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"success\": true,\n \"data\": {\n   \"id\": 1,\n   \"consignment_no\": \"NYC-LAX-123456\",\n   \"status\": {\n     \"id\": 1,\n     \"name\": \"Booked\"\n   },\n   \"consigner\": {\n     \"name\": \"John Doe\",\n     \"phone\": \"+1234567890\",\n     \"address\": \"123 Main St\",\n     \"cnic\": \"12345-6789012-3\"\n   },\n   \"consignee\": {\n     \"name\": \"Jane Smith\",\n     \"phone\": \"+1987654321\",\n     \"address\": \"456 Oak St\"\n   },\n   \"branch\": {\n     \"id\": 1,\n     \"name\": \"Main Branch\"\n   },\n   \"trackings\": [\n     {\n       \"id\": 1,\n       \"status\": \"Booked\",\n       \"created_at\": \"2024-03-20T10:00:00.000000Z\"\n     }\n   ],\n   \"originCity\": {\n     \"id\": 1,\n     \"name\": \"New York\"\n   },\n   \"destinationCity\": {\n     \"id\": 2,\n     \"name\": \"Los Angeles\"\n   }\n },\n \"message\": \"Consignment retrieved successfully\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n \"success\": false,\n \"message\": \"Consignment not found\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Endpoints",
            "description": "",
            "item": [
                {
                    "name": "POST api\/login",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/getDeliverySheets",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/getDeliverySheets",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/getDeliverySheets"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "location",
                                    "value": "https:\/\/api.citycourier.org\/public"
                                },
                                {
                                    "key": "content-type",
                                    "value": "text\/html; charset=utf-8"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6IlhzV2JhOElsTTNnS3BRYnlxOGo2WlE9PSIsInZhbHVlIjoidm9DenFPdy91c3Z1RzlVbW1mcDFQWWVpNXFXYURSTHdYZUk0ZFJ5dDFkZldIWEZQVmJnOEMyY05iSzFJV2w0ZFBjbm85Qmg1c0dlRzN3SnAveHJsMWxJR0xxY2lpUkh4R2NaSXYxTnlzeE41eVIwSkoxaytjdHNjdkJYRk51b0QiLCJtYWMiOiIxOWI4ZDNmOGNjMzRkODFlNGQ4ZGM2ZTg4MDE3MDc3ZGQzZjVmODA1NDExOTNmYjIyZTVmNzhkNzlmNmQ0N2Q1IiwidGFnIjoiIn0%3D; expires=Thu, 29 May 2025 08:33:13 GMT; Max-Age=7200; path=\/; samesite=lax; city_courier_session=eyJpdiI6ImxtbVh3bldMc2kwVE5JK0RYbmFSZXc9PSIsInZhbHVlIjoibk9OQnB0WHJuenhpRVpMeUVIU3ZBR1Z6YUVTOWxzK3dleWlVQXduTUpraUhLSW1XUmZ6RStRVWNxVm1jRXV1NjZBVlpTK09zTFhUZ2xYeU1mRHVHL2RJbVIwa0h6QmZOT3dCbzd3d3l4QWxLMEhiZmZhb0ZYYlliekJyYkp3eG8iLCJtYWMiOiJiOTI1MjU4YTk3NWUxYzE2NTc2ODE5NjRkNTczNzFhMjQ5ZGU0OTI5YmUwZjRlOTBiMTExNTQ5MjM0OTdkMTc2IiwidGFnIjoiIn0%3D; expires=Thu, 29 May 2025 08:33:13 GMT; Max-Age=7200; path=\/; httponly; samesite=lax"
                                }
                            ],
                            "code": 302,
                            "body": "<!DOCTYPE html>\n<html>\n    <head>\n        <meta charset=\"UTF-8\" \/>\n        <meta http-equiv=\"refresh\" content=\"0;url='https:\/\/api.citycourier.org\/public'\" \/>\n\n        <title>Redirecting to https:\/\/api.citycourier.org\/public<\/title>\n    <\/head>\n    <body>\n        Redirecting to <a href=\"https:\/\/api.citycourier.org\/public\">https:\/\/api.citycourier.org\/public<\/a>.\n    <\/body>\n<\/html>",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/updateConsignment",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/updateConsignment",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/updateConsignment"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"deliverysheet_id\":\"consequatur\",\"consignment_id\":\"consequatur\",\"status_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        }
    ],
    "auth": {
        "type": "noauth"
    }
}