PUT CompanyClassifications3/{id}
Updates the Company Classifications
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The data of the company classification |
globally unique identifier |
Required |
Body Parameters
The new data of the Company Classifications
CompanyClassificationDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| IdCompany | globally unique identifier |
None. |
|
| Code | string |
None. |
|
| Description | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "ed1e35dc-2193-4f50-b7dd-724de26cb19e",
"IdCompany": "2e1b40b8-33aa-4199-b518-c47f8213baed",
"Code": "sample string 3",
"Description": "sample string 4"
}
application/xml, text/xml
Sample:
<CompanyClassificationDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model"> <Code>sample string 3</Code> <Description>sample string 4</Description> <Id>ed1e35dc-2193-4f50-b7dd-724de26cb19e</Id> <IdCompany>2e1b40b8-33aa-4199-b518-c47f8213baed</IdCompany> </CompanyClassificationDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
If sucessful, returns the updated dto
CompanyClassificationDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| IdCompany | globally unique identifier |
None. |
|
| Code | string |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "fe92d2da-5b5d-4b9e-924b-09e9a53ebc80",
"IdCompany": "a937e255-a97f-4a82-b59d-32f405872e03",
"Code": "sample string 3",
"Description": "sample string 4"
}
application/xml, text/xml
Sample:
<CompanyClassificationDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model"> <Code>sample string 3</Code> <Description>sample string 4</Description> <Id>fe92d2da-5b5d-4b9e-924b-09e9a53ebc80</Id> <IdCompany>a937e255-a97f-4a82-b59d-32f405872e03</IdCompany> </CompanyClassificationDto>