POST api/addfile/{sessionID}/{corrType}/{corrID}
Добавляет файл в переписку
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
sessionID |
ID сессии (получается при логине) |
string |
Required |
corrType |
тип корреспондента: buyer, admin, support, user |
string |
Required |
corrID |
ID корреспондента |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
AddFileResponseName | Description | Type | Additional information |
---|---|---|---|
retval |
Код возврата (0 - ок, иначе - ошибка) |
integer |
None. |
desc |
Текстовая расшифровка кода возврата (описание ошибки) |
string |
None. |
messageID |
ID сообщения, к которому привязан файл |
integer |
None. |
newname |
Имя файла в хранилище |
string |
None. |
Response Formats
application/json, text/json
Sample:
{ "retval": 1, "desc": "sample string 2", "messageID": 3, "newname": "sample string 4" }
application/xml, text/xml
Sample:
<addfile.response> <retval>1</retval> <desc>sample string 2</desc> <messageID>3</messageID> <newname>sample string 4</newname> </addfile.response>