POST api/QatarID/SaveAttachments?branchCode={branchCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| branchCode | string |
Required |
Body Parameters
CustomerInfoViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Images | Collection of ProductImageViewModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"Images": [
{
"Image": {
"File": null
}
},
{
"Image": {
"File": null
}
}
]
}
text/html
Sample:
{"Images":[{"Image":{"File":null}},{"Image":{"File":null}}]}
application/x-www-form-urlencoded
Sample:
Sample not available.
multipart/form-data
Sample:
--MultipartDataMediaFormatterBoundary1q2w3e--
Response Information
Resource Description
CustomerInfoApiResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| status | string |
None. |
|
| message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": "sample string 1",
"message": "sample string 2"
}
text/html
Sample:
{"status":"sample string 1","message":"sample string 2"}
application/xml, text/xml
Sample:
<CustomerInfoApiResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <status>sample string 1</status> <message>sample string 2</message> </CustomerInfoApiResponse>
multipart/form-data
Sample:
--MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="status" sample string 1 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="message" sample string 2 --MultipartDataMediaFormatterBoundary1q2w3e--