POST Admin/Get_Address_By_ADDRESS_ID?Ticket={Ticket}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Ticket | string |
Required |
Body Parameters
Address| Name | Description | Type | Additional information |
|---|---|---|---|
| ADDRESS_ID | integer |
None. |
|
| PARTNER_ID | integer |
None. |
|
| IS_MAIN | boolean |
None. |
|
| ADDRESS_TYPE_ID | integer |
None. |
|
| CONTACT_PERSON | string |
None. |
|
| PHONE | string |
None. |
|
| LATITUDE | decimal number |
None. |
|
| LONGITUDE | decimal number |
None. |
|
| CITY_ID | integer |
None. |
|
| ADDRESS | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ADDRESS_ID": 1,
"PARTNER_ID": 2,
"IS_MAIN": true,
"ADDRESS_TYPE_ID": 1,
"CONTACT_PERSON": "sample string 4",
"PHONE": "sample string 5",
"LATITUDE": 1.0,
"LONGITUDE": 1.0,
"CITY_ID": 1,
"ADDRESS": "sample string 6"
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Result_Get_Address| Name | Description | Type | Additional information |
|---|---|---|---|
| My_Address | Address |
None. |
|
| ExceptionMsg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"My_Address": {
"ADDRESS_ID": 1,
"PARTNER_ID": 2,
"IS_MAIN": true,
"ADDRESS_TYPE_ID": 1,
"CONTACT_PERSON": "sample string 4",
"PHONE": "sample string 5",
"LATITUDE": 1.0,
"LONGITUDE": 1.0,
"CITY_ID": 1,
"ADDRESS": "sample string 6"
},
"ExceptionMsg": "sample string 1"
}