art_info
This method returns the value of a field from the items table, given an Item ID (ar_numero).
Body - raw:
{
"Method": "Art_Info",
"Parameters": [
<nItemId>,
<cField>
]
}
Parameters | Description |
---|---|
nItemId |
Primary key identifying the item (ar_numero). |
cField | Name of the field whose content has to be returned. |
The schema of the Items Database can be found here
Example:
*/ Return the content of the field ar_groupe for the item whose ID = 1000.
{
"Method": "Art_Info",
"Parameters": [
1000,
"ar_groupe"
]
}