POST api/v1/customerdocuments/updatecustomershow
Request Information
URI Parameters
None.
Body Parameters
CustomerDocument| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CustomerId | integer |
None. |
|
| DocumentTypeId | integer |
None. |
|
| MediaTypeId | integer |
None. |
|
| DateCreated | date |
None. |
|
| DateUpdated | date |
None. |
|
| Value | string |
None. |
|
| FileName | string |
None. |
|
| ContentType | string |
None. |
|
| Extension | string |
None. |
|
| Size | integer |
None. |
|
| ShowCustomer | boolean |
None. |
|
| DocumentTypes | DocumentType |
None. |
|
| MediaTypes | MediaType |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"CustomerId": 2,
"DocumentTypeId": 3,
"MediaTypeId": 4,
"DateCreated": "2026-03-17T21:43:00.224157-04:00",
"DateUpdated": "2026-03-17T21:43:00.224157-04:00",
"Value": "sample string 7",
"FileName": "sample string 8",
"ContentType": "sample string 9",
"Extension": "sample string 10",
"Size": 11,
"ShowCustomer": true,
"DocumentTypes": {
"Id": 1,
"Code": "sample string 2",
"Description": "sample string 3",
"Status": true,
"Label": "sample string 5",
"Icon": "sample string 6",
"Image": "QEA="
},
"MediaTypes": {
"Id": 1,
"Code": "sample string 2",
"Description": "sample string 3",
"Status": true,
"Label": "sample string 5",
"ContentType": "sample string 6",
"Extension": "sample string 7",
"Icon": "sample string 8",
"Image": "QEA="
}
}
application/xml, text/xml
Sample:
<CustomerDocument xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MWS.Core.Models.Customers">
<ContentType>sample string 9</ContentType>
<CustomerId>2</CustomerId>
<DateCreated>2026-03-17T21:43:00.224157-04:00</DateCreated>
<DateUpdated>2026-03-17T21:43:00.224157-04:00</DateUpdated>
<DocumentTypeId>3</DocumentTypeId>
<DocumentTypes xmlns:d2p1="http://schemas.datacontract.org/2004/07/MWS.Core.Models.Documents">
<d2p1:Code>sample string 2</d2p1:Code>
<d2p1:Description>sample string 3</d2p1:Description>
<d2p1:Icon>sample string 6</d2p1:Icon>
<d2p1:Id>1</d2p1:Id>
<d2p1:Image>QEA=</d2p1:Image>
<d2p1:Label>sample string 5</d2p1:Label>
<d2p1:Status>true</d2p1:Status>
</DocumentTypes>
<Extension>sample string 10</Extension>
<FileName>sample string 8</FileName>
<Id>1</Id>
<MediaTypeId>4</MediaTypeId>
<MediaTypes xmlns:d2p1="http://schemas.datacontract.org/2004/07/MWS.Core.Models.Documents">
<d2p1:Code>sample string 2</d2p1:Code>
<d2p1:ContentType>sample string 6</d2p1:ContentType>
<d2p1:Description>sample string 3</d2p1:Description>
<d2p1:Extension>sample string 7</d2p1:Extension>
<d2p1:Icon>sample string 8</d2p1:Icon>
<d2p1:Id>1</d2p1:Id>
<d2p1:Image>QEA=</d2p1:Image>
<d2p1:Label>sample string 5</d2p1:Label>
<d2p1:Status>true</d2p1:Status>
</MediaTypes>
<ShowCustomer>true</ShowCustomer>
<Size>11</Size>
<Value>sample string 7</Value>
</CustomerDocument>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseModelOfBoolean| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Data | boolean |
None. |
|
| Pagination | Pagination |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.