PUT CompanyClassifications4/{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
CompanyClassificationDtoName | 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": "5e638cc8-5272-4cd3-af06-de58d5e58aa0", "IdCompany": "5fd5e62c-b697-4a92-8a7a-7d7b9fc81747", "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>5e638cc8-5272-4cd3-af06-de58d5e58aa0</Id> <IdCompany>5fd5e62c-b697-4a92-8a7a-7d7b9fc81747</IdCompany> </CompanyClassificationDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
If sucessful, returns the updated dto
CompanyClassificationDtoName | 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": "f8a4bfc9-f092-4d83-a408-5d101f898021", "IdCompany": "0007421a-d76b-4f35-b279-1639f5a56990", "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>f8a4bfc9-f092-4d83-a408-5d101f898021</Id> <IdCompany>0007421a-d76b-4f35-b279-1639f5a56990</IdCompany> </CompanyClassificationDto>