Retrieves the article no-warranty reason with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The article no-warranty reason id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the article no-warranty reason, or 404 Not Found if it doesn't exist.
article_no_warranty_reason| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| name |
Name of the Group item |
string |
Required Max length: 255 |
| code |
Field used for Embedded entity (store there your ERP PK) |
string |
Max length: 255 |
| sales_organization_id |
FK of sales_organization. Filled if specific of one SO, empty if can be used by all. |
globally unique identifier | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "67b4cc9a-9cbe-47ec-8953-06309894fbcd",
"name": "sample string 2",
"code": "sample string 3",
"sales_organization_id": "32fc9f0d-d432-4a4a-b324-341af34d0c1a",
"modified_dateutc": "2026-09-16T10:19:20.3304236+00:00"
}
application/xml, text/xml
Sample:
<article_no_warranty_reason xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <code>sample string 3</code> <id>67b4cc9a-9cbe-47ec-8953-06309894fbcd</id> <modified_dateutc>2026-09-16T10:19:20.330Z</modified_dateutc> <name>sample string 2</name> <sales_organization_id>32fc9f0d-d432-4a4a-b324-341af34d0c1a</sales_organization_id> </article_no_warranty_reason>