GET products/fichetech?token={token}&count={count}&session={session}&options={options}
Loading product data sheets - Returns added/modified data sheets from the specified token
Request
URL parameters
| Name | Description | Type | Additionnal Information | Intro version |
|---|---|---|---|---|
| token | Token of last successful loading | bigint | ||
| count | Maximum number of products to return | integer | Default value: 100 Value between 1 and 500 | |
| session | Session identification (must be unique for the active session) | string | Length between 0 and 100 | |
| options | Options for custom processing | string | Length between 0 and 100 |
Response
FicheTechResult| Name | Description | Type | Additionnal Information | Intro version |
|---|---|---|---|---|
| product | Product structure | Collection of ProductFicheTech | ||
| token | Token of this result's last entry. This token can be passed the next time you call this API to get the rest of the modified data | string | ||
| count | Number of entries in this lot | integer | ||
| queuecount | Number of remaining prices to recover | integer | ||
| returncode | Return code: 0 for success | integer | ||
| returnmsg | Return message | string | ||
| warnings | Warnings (the instruction worked but you need to pay attention to warnings. May cause partial data loss (Truncation)) | Collection of string | ||
| version | API version | string |
Return format
application/json, text/json, application/x-www-form-urlencoded
Sample:
{
"product": [
{
"product_id": 1,
"fichetech": {
"file": [
{
"Seqsequenceuence": 1,
"filename": "sample string 2",
"binaryfile": "sample string 3",
"language": "sample string 4",
"fileURL": "sample string 5"
},
{
"Seqsequenceuence": 1,
"filename": "sample string 2",
"binaryfile": "sample string 3",
"language": "sample string 4",
"fileURL": "sample string 5"
}
]
}
},
{
"product_id": 1,
"fichetech": {
"file": [
{
"Seqsequenceuence": 1,
"filename": "sample string 2",
"binaryfile": "sample string 3",
"language": "sample string 4",
"fileURL": "sample string 5"
},
{
"Seqsequenceuence": 1,
"filename": "sample string 2",
"binaryfile": "sample string 3",
"language": "sample string 4",
"fileURL": "sample string 5"
}
]
}
}
],
"token": "sample string 1",
"count": 2,
"queuecount": 3,
"returncode": 4,
"returnmsg": "sample string 5",
"warnings": [
"sample string 1",
"sample string 2"
],
"version": "sample string 6"
}
application/xml, text/xml
Sample:
<result returncode="4" returnmsg="sample string 5" version="sample string 6" token="sample string 1" count="2" queuecount="3">
<warnings>sample string 1</warnings>
<warnings>sample string 2</warnings>
<product product_id="1">
<fichetech>
<file Seqsequenceuence="1" filename="sample string 2" binaryfile="sample string 3" language="sample string 4" fileURL="sample string 5" />
<file Seqsequenceuence="1" filename="sample string 2" binaryfile="sample string 3" language="sample string 4" fileURL="sample string 5" />
</fichetech>
</product>
<product product_id="1">
<fichetech>
<file Seqsequenceuence="1" filename="sample string 2" binaryfile="sample string 3" language="sample string 4" fileURL="sample string 5" />
<file Seqsequenceuence="1" filename="sample string 2" binaryfile="sample string 3" language="sample string 4" fileURL="sample string 5" />
</fichetech>
</product>
</result>