41 lines
826 B
Plaintext
41 lines
826 B
Plaintext
CAMPIONE #0
|
|
curl --location --request POST 'https://93.43.5.102/limsapi/api/odata/Campione' \
|
|
--header 'Content-Type: application/json' \
|
|
--header 'Authorization: Bearer ••••••' \
|
|
--data '{
|
|
"Commessa": 95833,
|
|
"Matrice": 8413,
|
|
"SottoMatrice": null,
|
|
"SchemaCustomField": 82,
|
|
"NoteWeb": "aaa"
|
|
}'
|
|
|
|
RESPONSE:
|
|
{
|
|
"IdCampione": 14445,
|
|
"Commessa": 95833,
|
|
"Matrice": 8413
|
|
}
|
|
|
|
---
|
|
CAMPIONE #1
|
|
curl --location --request POST 'https://93.43.5.102/limsapi/api/odata/Campione' \
|
|
--header 'Content-Type: application/json' \
|
|
--header 'Authorization: Bearer ••••••' \
|
|
--data '{
|
|
"Commessa": 95833,
|
|
"Matrice": 3879,
|
|
"SottoMatrice": null,
|
|
"SchemaCustomField": 82,
|
|
"NoteWeb": "bbb"
|
|
}'
|
|
|
|
RESPONSE:
|
|
{
|
|
"IdCampione": 15750,
|
|
"Commessa": 95833,
|
|
"Matrice": 3879
|
|
}
|
|
|
|
---
|