GET api/Empresa/GetTenant
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
EmpresaDto| Name | Description | Type | Additional information |
|---|---|---|---|
| nome | string |
Required |
|
| domain | string |
Required |
|
| vertical | string |
None. |
|
| phone | string |
None. |
|
| parallelismCoefficient | integer |
None. |
|
| key | integer |
None. |
|
| id | integer |
None. |
|
| isNew | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"nome": "sample string 1",
"domain": "sample string 2",
"vertical": "sample string 3",
"phone": "sample string 4",
"parallelismCoefficient": 1,
"key": 5,
"id": 5,
"isNew": true
}
application/xml, text/xml
Sample:
<EmpresaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Linkcards.Webapi.Models.Tenant"> <isNew xmlns="http://schemas.datacontract.org/2004/07/Zenite.Pi.Web.Models">true</isNew> <key xmlns="http://schemas.datacontract.org/2004/07/Zenite.Pi.Web.Models">5</key> <domain>sample string 2</domain> <nome>sample string 1</nome> <parallelismCoefficient>1</parallelismCoefficient> <phone>sample string 4</phone> <vertical>sample string 3</vertical> </EmpresaDto>