This function will return the dispatcher entity for the listed ATM and owner. INPUTS==> OWNER ENTITY, ATM ENTITY. RETURN==> DISPATCHER ENTITY
None.
ReturnDispEntityRequest
ReturnDispEntityRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| OwnerEntity |
Entity value for the owner (database value) |
integer |
Required |
| AtmEntity |
Entity value for the ATM (database value) |
integer |
Required |
{
"OwnerEntity": 1,
"AtmEntity": 2
}
<ReturnDispEntityRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SaG.API.Models.Requests.Dispatcher"> <AtmEntity>2</AtmEntity> <OwnerEntity>1</OwnerEntity> </ReturnDispEntityRequest>
Sample not available.
ReturnDispEntityResponse
ReturnDispEntityResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Header |
Dispatcher Entity response message header. |
ResponseHeader |
None. |
| Body |
Dispatcher Entity response message body. |
ReturnDispEntityResponseBody |
None. |
| Name | Description | Type | Additional information |
|---|---|---|---|
| Message |
Message |
string |
None. |
| StatusCode |
Status code |
ResponseStatus |
None. |
| Status |
Status |
string |
None. |
| ErrorId |
Error id |
string |
None. |
| Name | Description | Type | Additional information |
|---|---|---|---|
| DispatcherEntity |
Entity value for the dispatcher (database value) |
integer |
None. |
{
"Header": {
"Message": "sample string 1",
"StatusCode": 0,
"Status": "sample string 2",
"ErrorId": "sample string 3"
},
"Body": {
"DispatcherEntity": 1
}
}
<ReturnDispEntityResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SaG.API.Models.Responses.Dispatcher">
<Body>
<DispatcherEntity>1</DispatcherEntity>
</Body>
<Header xmlns:d2p1="http://schemas.datacontract.org/2004/07/SaG.API.Models.Responses">
<d2p1:ErrorId>sample string 3</d2p1:ErrorId>
<d2p1:Message>sample string 1</d2p1:Message>
<d2p1:Status>sample string 2</d2p1:Status>
<d2p1:StatusCode>Ok</d2p1:StatusCode>
</Header>
</ReturnDispEntityResponse>