GET api/MasterConfig/BroadCast/GetAvailableRidersForManualAssign?orderId={orderId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
orderId

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of AssignRiderManuallyModel
NameDescriptionTypeAdditional information
DeliveryAgentID

string

None.

RiderName

string

None.

ProfilePicture

string

None.

MobileNo

string

None.

AgentAreaID

integer

None.

IsSameArea

boolean

None.

IsAssociateArea

boolean

None.

IsOtherArea

boolean

None.

IsAvailableForPickup

boolean

None.

IsEngaged

boolean

None.

CurrentLoad

integer

None.

HasPendingRequest

boolean

None.

HasRejectedThisOrder

boolean

None.

LastLatitude

decimal number

None.

LastLongitude

decimal number

None.

LastLocationUpdate

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "DeliveryAgentID": "sample string 1",
    "RiderName": "sample string 2",
    "ProfilePicture": "sample string 3",
    "MobileNo": "sample string 4",
    "AgentAreaID": 1,
    "IsSameArea": true,
    "IsAssociateArea": true,
    "IsOtherArea": true,
    "IsAvailableForPickup": true,
    "IsEngaged": true,
    "CurrentLoad": 10,
    "HasPendingRequest": true,
    "HasRejectedThisOrder": true,
    "LastLatitude": 1.1,
    "LastLongitude": 1.1,
    "LastLocationUpdate": "2026-04-13T18:12:08.8936428+09:30"
  },
  {
    "DeliveryAgentID": "sample string 1",
    "RiderName": "sample string 2",
    "ProfilePicture": "sample string 3",
    "MobileNo": "sample string 4",
    "AgentAreaID": 1,
    "IsSameArea": true,
    "IsAssociateArea": true,
    "IsOtherArea": true,
    "IsAvailableForPickup": true,
    "IsEngaged": true,
    "CurrentLoad": 10,
    "HasPendingRequest": true,
    "HasRejectedThisOrder": true,
    "LastLatitude": 1.1,
    "LastLongitude": 1.1,
    "LastLocationUpdate": "2026-04-13T18:12:08.8936428+09:30"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAssignRiderManuallyModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operations.CustomModels">
  <AssignRiderManuallyModel>
    <AgentAreaID>1</AgentAreaID>
    <CurrentLoad>10</CurrentLoad>
    <DeliveryAgentID>sample string 1</DeliveryAgentID>
    <HasPendingRequest>true</HasPendingRequest>
    <HasRejectedThisOrder>true</HasRejectedThisOrder>
    <IsAssociateArea>true</IsAssociateArea>
    <IsAvailableForPickup>true</IsAvailableForPickup>
    <IsEngaged>true</IsEngaged>
    <IsOtherArea>true</IsOtherArea>
    <IsSameArea>true</IsSameArea>
    <LastLatitude>1.1</LastLatitude>
    <LastLocationUpdate>2026-04-13T18:12:08.8936428+09:30</LastLocationUpdate>
    <LastLongitude>1.1</LastLongitude>
    <MobileNo>sample string 4</MobileNo>
    <ProfilePicture>sample string 3</ProfilePicture>
    <RiderName>sample string 2</RiderName>
  </AssignRiderManuallyModel>
  <AssignRiderManuallyModel>
    <AgentAreaID>1</AgentAreaID>
    <CurrentLoad>10</CurrentLoad>
    <DeliveryAgentID>sample string 1</DeliveryAgentID>
    <HasPendingRequest>true</HasPendingRequest>
    <HasRejectedThisOrder>true</HasRejectedThisOrder>
    <IsAssociateArea>true</IsAssociateArea>
    <IsAvailableForPickup>true</IsAvailableForPickup>
    <IsEngaged>true</IsEngaged>
    <IsOtherArea>true</IsOtherArea>
    <IsSameArea>true</IsSameArea>
    <LastLatitude>1.1</LastLatitude>
    <LastLocationUpdate>2026-04-13T18:12:08.8936428+09:30</LastLocationUpdate>
    <LastLongitude>1.1</LastLongitude>
    <MobileNo>sample string 4</MobileNo>
    <ProfilePicture>sample string 3</ProfilePicture>
    <RiderName>sample string 2</RiderName>
  </AssignRiderManuallyModel>
</ArrayOfAssignRiderManuallyModel>