[lightMode]
Order Assigned Employees Details
GET
/orders/assignment/{order_id}[updatedIn] a month ago
This endpoint allows you to fetch the assigned employees' details for a specific order by passing the order_id
as a path parameter.
Request
[message.pathParameter]
Request samples
[api.label.responses]
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
[response.label.jsonSchema]
status
integer
optional
Response status code, a numeric or alphanumeric identifier used to convey the outcome or status of a request, operation, or transaction in various systems and applications, typically indicating whether the action was successful, encountered an error, or resulted in a specific condition.
success
boolean
optional
Response flag, boolean indicator used to signal a particular condition or state in the response of a system or application, often representing the presence or absence of certain conditions or outcomes.
data
array[object (OrderAssignedEmployees) {3}]
optional
id
integer
required
Employee ID
name
string
required
Employee name
avatar
string
required
Employee Avatar image
[api.label.example]
{
"status": 200,
"success": true,
"data": [
{
"id": 525144736,
"name": "Ahmed Mohammed",
"avatar": "http://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?s=80&d=mm&r=g"
}
]
}
[updatedIn] a month ago