GET api/GalleriesCustomers/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
DbGalleriesCustomers| Name | Description | Type | Additional information |
|---|---|---|---|
| isValid | boolean |
None. |
|
| Customers | Collection of DbGalleriesCustomer |
None. |
|
| Erro | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"isValid": true,
"Customers": [
{
"CustomerID": "sample string 1",
"Name": "sample string 2",
"Email": "sample string 3",
"Telphone": "sample string 4",
"SendSMS": "sample string 5",
"SendEmail": "sample string 6"
},
{
"CustomerID": "sample string 1",
"Name": "sample string 2",
"Email": "sample string 3",
"Telphone": "sample string 4",
"SendSMS": "sample string 5",
"SendEmail": "sample string 6"
}
],
"Erro": "sample string 2"
}
application/xml, text/xml
Sample:
<DbGalleriesCustomers xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OpenGO.API.Models">
<Customers>
<DbGalleriesCustomer>
<CustomerID>sample string 1</CustomerID>
<Email>sample string 3</Email>
<Name>sample string 2</Name>
<SendEmail>sample string 6</SendEmail>
<SendSMS>sample string 5</SendSMS>
<Telphone>sample string 4</Telphone>
</DbGalleriesCustomer>
<DbGalleriesCustomer>
<CustomerID>sample string 1</CustomerID>
<Email>sample string 3</Email>
<Name>sample string 2</Name>
<SendEmail>sample string 6</SendEmail>
<SendSMS>sample string 5</SendSMS>
<Telphone>sample string 4</Telphone>
</DbGalleriesCustomer>
</Customers>
<Erro>sample string 2</Erro>
<isValid>true</isValid>
</DbGalleriesCustomers>