SOS version 1.0
https://api-customer.sos.sk
/auth
post /auth/token/password
Headers
- Authorization: required(string)
Client authentification.
Example:
Basic ZGVtbzo5NUtqblNVWkdYU0c3bTdPa2RHTzlrUDhabnp2TTd1UA==
- Accept-Language: (string - default: en)
Example:
sk-SK, sk;q=0.9, en;q=0.8, de;q=0.7
Body
Media type: application/json
Type: any
Example:
{
"username": "aaaa",
"password": "bbb"
}
HTTP status code 200
Body
Media type: application/json
Type: any
Example:
{
"client_id": "demo",
"user_id": "596c945c593120649f0ff69c",
"token_type": "Bearer",
"access_token": "1a28478147da43ae8745f37a7b47d011940d4611c3f74c619e20bf489b707331758b69d28fe6449ba5a1e7e19033e3cc598f926331f5481aa10a1cbc1d20c442",
"refresh_token": "970cbbb7e7d5465eb87d31d5ab3cdaddf012ee9575e7449fa559c56aee2968b33ec04c25160a4ba7a2e35e95b9841018a1e06c30da9f4d3f97c958d7856918d4",
"scopes": [
"customer",
"public"
]
}
HTTP status code 401
Username or password are invalid.
HTTP status code 403
Forbidden.
HTTP status code 404
Object not found.
HTTP status code 409
Conflict.
HTTP status code 500
Body
Media type: application/json
Type: any
Example:
{
"id": "9f426268-4e14-4aa1-96ec-ccf5445aec2d",
"description": "The server encountered an unexpected condition.",
"name": "Internal Server Error",
"code": 500,
"payload": {
"custom_data": "custom"
}
}
post /auth/token/refresh
Headers
- Authorization: required(string)
Client authentification.
Example:
Basic ZGVtbzo5NUtqblNVWkdYU0c3bTdPa2RHTzlrUDhabnp2TTd1UA==
- Accept-Language: (string - default: en)
Example:
sk-SK, sk;q=0.9, en;q=0.8, de;q=0.7
Body
Media type: application/json
Type: any
Example:
{
"refresh_token": "af144de4912c4a30b5a903837aa69c434cdeea8599d340989a13e18b9156405a90440b4f68384d2c9c70facc6159d12aa66e7ee20591407dbbda566571210ebd"
}
HTTP status code 200
Body
Media type: application/json
Type: any
Example:
{
"client_id": "demo",
"user_id": "596c945c593120649f0ff69c",
"token_type": "Bearer",
"access_token": "72a79f87a91b46ac8d8a93773f80ae0f0f5de32240c94971af6005563ebd109c87d6db88e5d4430aa36838e9d93c3613ca4f6a39299d49469c8a9a0a78ecc0e1",
"refresh_token": "f8cc8aaeaf9b4d8e869b9cc253c722a43cafaad970d34c3e9e95ef7f59fcc3ee0cfc519b6da341549ea3ba0751713a57491f6cc7afda4b58ae56a653530ccd7e",
"scopes": [
"customer",
"public"
]
}
HTTP status code 403
Forbidden.
HTTP status code 404
Object not found.
HTTP status code 409
Conflict.
HTTP status code 500
Body
Media type: application/json
Type: any
Example:
{
"id": "9f426268-4e14-4aa1-96ec-ccf5445aec2d",
"description": "The server encountered an unexpected condition.",
"name": "Internal Server Error",
"code": 500,
"payload": {
"custom_data": "custom"
}
}
Information about the access token.
post /auth/tokeninfo
Information about the access token.
Headers
- Authorization: required(string)
Client authentification.
Example:
Basic ZGVtbzo5NUtqblNVWkdYU0c3bTdPa2RHTzlrUDhabnp2TTd1UA==
- Accept-Language: (string - default: en)
Example:
sk-SK, sk;q=0.9, en;q=0.8, de;q=0.7
Body
Media type: application/json
Type: any
Example:
{
"access_token": "a892c79372344259baf23cf105eb976e519b71127d164c61a0eb39bca57869028df6cad7fd7f4f85aa82bdcc49eb475dca8c88b26fc44546b3a00e61bf3a7b91"
}
HTTP status code 200
Body
Media type: application/json
Type: any
Example:
{
"client_id": "demo",
"user_id": "596c945c593120649f0ff69c",
"token_type": "Bearer",
"expires_in": 2841,
"expires_at": 1500293953,
"expires_at_date": "2017-07-17 14:19:13.498450+02:00",
"scopes": [
"customer",
"public"
]
}
HTTP status code 400
INVALID_DATA
- invalid input data.
INVALID_TOKEN
- token is invalid.
HTTP status code 401
UNAUTHORIZED_CLIENT
-
HTTP status code 403
INVALID_CLIENT
-
HTTP status code 404
Object not found.
HTTP status code 409
Conflict.
HTTP status code 500
Body
Media type: application/json
Type: any
Example:
{
"id": "9f426268-4e14-4aa1-96ec-ccf5445aec2d",
"description": "The server encountered an unexpected condition.",
"name": "Internal Server Error",
"code": 500,
"payload": {
"custom_data": "custom"
}
}
Revoke both access and refresh token.
post /auth/revoke
Revoke both access and refresh token.
Headers
- Authorization: required(string)
Client authentification.
Example:
Basic ZGVtbzo5NUtqblNVWkdYU0c3bTdPa2RHTzlrUDhabnp2TTd1UA==
- Accept-Language: (string - default: en)
Example:
sk-SK, sk;q=0.9, en;q=0.8, de;q=0.7
Body
Media type: application/json
Type: any
Example:
{
"access_token": "a892c79372344259baf23cf105eb976e519b71127d164c61a0eb39bca57869028df6cad7fd7f4f85aa82bdcc49eb475dca8c88b26fc44546b3a00e61bf3a7b91"
}
HTTP status code 200
Tokens was succesfully revoked.
HTTP status code 400
INVALID_DATA
- invalid input data.
INVALID_TOKEN
- token is invalid.
HTTP status code 401
UNAUTHORIZED_CLIENT
-
HTTP status code 403
INVALID_CLIENT
-
HTTP status code 404
Object not found.
HTTP status code 409
Conflict.
HTTP status code 500
Body
Media type: application/json
Type: any
Example:
{
"id": "9f426268-4e14-4aa1-96ec-ccf5445aec2d",
"description": "The server encountered an unexpected condition.",
"name": "Internal Server Error",
"code": 500,
"payload": {
"custom_data": "custom"
}
}
/docs
REST API documentation.
get /docs
REST API documentation.
Headers
- Accept-Language: (string - default: en)
Example:
sk-SK, sk;q=0.9, en;q=0.8, de;q=0.7
HTTP status code 200
Body
Media type: text/html
Type: any
HTTP status code 404
Object not found.
HTTP status code 500
Body
Media type: application/json
Type: any
Example:
{
"id": "9f426268-4e14-4aa1-96ec-ccf5445aec2d",
"description": "The server encountered an unexpected condition.",
"name": "Internal Server Error",
"code": 500,
"payload": {
"custom_data": "custom"
}
}
/invoices
Invoice list.
get /invoices
Invoice list.
Custom OAuth 2.0 authentification
Headers
- Authorization: required(string)
Bearer token.
Example:
Bearer d5bc5b2ac2464925a0602d375202fb12eb8d1c1a7c124f78808fb204492530342136ee32ded2431da34e58d881e0af69fee3ebaabc3743e4ad648f7d9a280c4c
- Accept-Language: (string - default: en)
Example:
sk-SK, sk;q=0.9, en;q=0.8, de;q=0.7
Query Parameters
- payment_status: required(one of paid, unpaid_before, unpaid_after)
Payment status of invoice:
paid
- invoice is paidunpaid_before
- invoice is unpaid and payment due not yet expiredunpaid_after
- invoice is unpaid and payment due has expired
HTTP status code 200
Body
Media type: application/json
Type: any
Example:
{
"paging": {
"total": 10,
"limit": 0,
"offset": 0
},
"invoices": [
{
"status": {
"id": "PAID",
"name": "uhradená"
},
"due_date": "2014-09-10 02:00:00+02:00",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 28.4,
"amount_with_tax": 34.08
},
"items_total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 28.4,
"amount_with_tax": 34.08
},
"items": [
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.3295,
"amount_with_tax": 0.3955
},
"name": "KSM 632 B = DTSA62N",
"descr": "Mikrotlačidlo 90° hĺbka 7,85mm 1,6N",
"customer_name": null,
"ordernr": "4266",
"brand": {
"name": null
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.0659,
"amount_with_tax": 0.0791
},
"id": 83170,
"unit": "ks",
"quantity": 5
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.9806,
"amount_with_tax": 1.1767
},
"name": "44159",
"descr": "Transformátor EI30-18 1x12V 2,3VA 230V",
"customer_name": null,
"ordernr": "12872",
"brand": {
"name": "MYRRA"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.9806,
"amount_with_tax": 1.1767
},
"id": 85508,
"unit": "ks",
"quantity": 1
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.9433,
"amount_with_tax": 1.132
},
"name": "44162",
"descr": "Transformátor EI30-18 1x24V 2,3VA 230V",
"customer_name": null,
"ordernr": "54824",
"brand": {
"name": "MYRRA"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.9433,
"amount_with_tax": 1.132
},
"id": 96278,
"unit": "ks",
"quantity": 1
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 21.4871,
"amount_with_tax": 25.7845
},
"name": "Charge Manager 410",
"descr": "Nabíjačka akumulátorov NiCd/NiMH/NiZn 1-4x AA/AAA 1A",
"customer_name": null,
"ordernr": "156287",
"brand": {
"name": "VOLTCRAFT"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 21.4871,
"amount_with_tax": 25.7845
},
"id": 139150,
"unit": "ks",
"quantity": 1
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 4.6584,
"amount_with_tax": 5.59
},
"name": "4AA2500mWh1.6V BP4",
"descr": "Akumulátor NiZn 1,6V 1500mAh AA 1ks",
"customer_name": null,
"ordernr": "153207",
"brand": {
"name": "CONRAD ENERGY"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.1646,
"amount_with_tax": 1.3975
},
"id": 138191,
"unit": "ks",
"quantity": 4
}
],
"number": "1140017085",
"payment": {
"date": "2014-09-19 02:00:00+02:00",
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "1967",
"name": "Kreditnou kartou vopred"
},
"delivery": {
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "407",
"name": "Osobný odber v Košiciach"
},
"vs": "114000499",
"created_date": "2014-09-10 02:00:00+02:00",
"rid": "64424990155",
"customer_number": "1743",
"id": "56a7622b9a23267d1a95061f"
},
{
"status": {
"id": "PAID",
"name": "uhradená"
},
"due_date": "2014-09-30 02:00:00+02:00",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 66.12,
"amount_with_tax": 79.34
},
"items_total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 66.12,
"amount_with_tax": 79.34
},
"items": [
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 66.1208,
"amount_with_tax": 79.345
},
"name": "Multi NAV-3",
"descr": "Športové hodinky s meraním pulzu a GPS čier/strieb.",
"customer_name": null,
"ordernr": "172824",
"brand": {
"name": "VARIOUS"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 66.1208,
"amount_with_tax": 79.345
},
"id": 192731,
"unit": "ks",
"quantity": 1
}
],
"number": "1140018483",
"payment": {
"date": "2014-10-01 02:00:00+02:00",
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "122",
"name": "Prevodom"
},
"delivery": {
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "407",
"name": "Osobný odber v Košiciach"
},
"vs": "1414018483",
"created_date": "2014-09-30 02:00:00+02:00",
"rid": "64424991553",
"customer_number": "1743",
"id": "56a7622c9a23267d1a950620"
},
{
"status": {
"id": "PAID",
"name": "uhradená"
},
"due_date": "2015-12-16 01:00:00+01:00",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 18.93,
"amount_with_tax": 22.72
},
"items_total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 18.93,
"amount_with_tax": 22.71
},
"items": [
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 2.7936,
"amount_with_tax": 3.352
},
"name": "Alkaline LR03 TECXUS SF4",
"descr": "Batéria alkalická 1,5V AAA fólia",
"customer_name": null,
"ordernr": "77311",
"brand": {
"name": "TECXUS"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.1746,
"amount_with_tax": 0.2095
},
"id": 104738,
"unit": "ks",
"quantity": 16
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 3.9648,
"amount_with_tax": 4.7568
},
"name": "Alkaline LR06 XXL TECXUS 24pcs",
"descr": "Batéria alkalická 1,5VAA XXL balenie",
"customer_name": null,
"ordernr": "127466",
"brand": {
"name": "TECXUS"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.1652,
"amount_with_tax": 0.1982
},
"id": 126313,
"unit": "ks",
"quantity": 24
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 5.4557,
"amount_with_tax": 6.5468
},
"name": "MW3IP25GS",
"descr": "AC/DC adaptér 27W 3-4,5-5-6-7,5-12V/2,25A",
"customer_name": null,
"ordernr": "91765",
"brand": {
"name": "MINWA"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 5.4557,
"amount_with_tax": 6.5468
},
"id": 109018,
"unit": "ks",
"quantity": 1
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 2.8091,
"amount_with_tax": 3.3709
},
"name": "MW3A03GS",
"descr": "AC/DC adaptér 3,6W 3-4,5-5-6-7,5-9-12V/0,3A",
"customer_name": null,
"ordernr": "91718",
"brand": {
"name": "MINWA"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 2.8091,
"amount_with_tax": 3.3709
},
"id": 109010,
"unit": "ks",
"quantity": 1
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.0024,
"amount_with_tax": 1.2028
},
"name": "USB-AM/B-Micro 0,6M",
"descr": "USB2.0 kábel A na B-Micro 0,6m",
"customer_name": null,
"ordernr": "101228",
"brand": {
"name": null
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.5012,
"amount_with_tax": 0.6014
},
"id": 117128,
"unit": "ks",
"quantity": 2
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 2.9,
"amount_with_tax": 3.48
},
"name": "ŠPEDIČNÉ A BALNÉ",
"descr": "Poplatok",
"customer_name": null,
"ordernr": "44832",
"brand": {
"name": null
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 2.9,
"amount_with_tax": 3.48
},
"id": 293918,
"unit": "ks",
"quantity": 1
}
],
"number": "1150023918",
"payment": {
"date": "2015-12-22 01:00:00+01:00",
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "123",
"name": "Dobierka"
},
"delivery": {
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "39131447033857",
"name": null
},
"vs": "1415023918",
"created_date": "2015-12-16 01:00:00+01:00",
"rid": "49920404881411",
"customer_number": "1743",
"id": "56a7622f9a23267d1a950623"
},
{
"status": {
"id": "PAID",
"name": "uhradená"
},
"due_date": "2015-12-23 01:00:00+01:00",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 9.1,
"amount_with_tax": 10.92
},
"items_total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 9.1,
"amount_with_tax": 10.92
},
"items": [
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 9.0961,
"amount_with_tax": 10.9153
},
"name": "BC-300",
"descr": "Nabíjačka akumulátorov NiMH AA/AAA, 0,3A",
"customer_name": null,
"ordernr": "178611",
"brand": {
"name": "VOLTCRAFT"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 9.0961,
"amount_with_tax": 10.9153
},
"id": 149705,
"unit": "ks",
"quantity": 1
}
],
"number": "1150024386",
"payment": {
"date": "2015-12-27 01:00:00+01:00",
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "122",
"name": "Prevodom"
},
"delivery": {
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "407",
"name": "Osobný odber v Košiciach"
},
"vs": "1415024386",
"created_date": "2015-12-23 01:00:00+01:00",
"rid": "51251844743187",
"customer_number": "1743",
"id": "56a762309a23267d1a950624"
},
{
"status": {
"id": "PAID",
"name": "uhradená"
},
"due_date": "2016-01-11 01:00:00+01:00",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 4.11,
"amount_with_tax": 4.93
},
"items_total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 4.11,
"amount_with_tax": 4.93
},
"items": [
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.3119,
"amount_with_tax": 1.5743
},
"name": "HDMI 19MM/3",
"descr": "Šnúra HDMI 1.4 1080p M/M 3,0m Hi-speed+ETHERNET",
"customer_name": null,
"ordernr": "57733",
"brand": {
"name": null
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.3119,
"amount_with_tax": 1.5743
},
"id": 97301,
"unit": "ks",
"quantity": 1
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.3812,
"amount_with_tax": 1.6574
},
"name": "215-212",
"descr": "Banánik na kábel 4mm 20A 42V červený",
"customer_name": null,
"ordernr": "157985",
"brand": {
"name": "WAGO"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.6906,
"amount_with_tax": 0.8287
},
"id": 139834,
"unit": "ks",
"quantity": 2
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.4192,
"amount_with_tax": 1.703
},
"name": "215-311",
"descr": "Banánik na kábel 4mm 20A 42V čierny",
"customer_name": null,
"ordernr": "91866",
"brand": {
"name": "WAGO"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.7096,
"amount_with_tax": 0.8515
},
"id": 109053,
"unit": "ks",
"quantity": 2
}
],
"number": "217",
"payment": {
"date": "2016-01-19 01:00:00+01:00",
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "123",
"name": "Dobierka"
},
"delivery": {
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "39131447033857",
"name": null
},
"vs": "1416000217",
"created_date": "2016-01-11 01:00:00+01:00",
"rid": "52664888983569",
"customer_number": "1743",
"id": "5776f14567dca52f00ee6e0a"
},
{
"status": {
"id": "PAID",
"name": "uhradená"
},
"due_date": "2016-07-08 02:00:00+02:00",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 12.15,
"amount_with_tax": 14.58
},
"items_total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 12.15,
"amount_with_tax": 14.58
},
"items": [
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 3.8301,
"amount_with_tax": 4.5961
},
"name": "TOOLCRAFT 588182",
"descr": "Ručná spájkovačka 60W 230VAC D6xL75mm",
"customer_name": "My Label",
"ordernr": "161058",
"brand": {
"name": "TOOLCRAFT"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 3.8301,
"amount_with_tax": 4.5961
},
"id": 140880,
"unit": "ks",
"quantity": 1
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 2.2665,
"amount_with_tax": 2.7198
},
"name": "UP 915 EP 160x100mm",
"descr": "Skúšobná DPS, 37p. FR4 /doska plošných spojov",
"customer_name": null,
"ordernr": "80378",
"brand": {
"name": "WR RADEMACHER"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 2.2665,
"amount_with_tax": 2.7198
},
"id": 105504,
"unit": "ks",
"quantity": 1
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.3701,
"amount_with_tax": 0.4441
},
"name": "ROSIN45G",
"descr": "Kolofónia v miske netto 45g (colophony)",
"customer_name": null,
"ordernr": "165955",
"brand": {
"name": "CYNEL"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.3701,
"amount_with_tax": 0.4441
},
"id": 143394,
"unit": "ks",
"quantity": 1
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.7,
"amount_with_tax": 0.84
},
"name": "1532 Sn60Pb38Cu2 1,5mm 10g",
"descr": "Spájka F-SW26 2,2%",
"customer_name": null,
"ordernr": "41360",
"brand": {
"name": null
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.35,
"amount_with_tax": 0.42
},
"id": 90774,
"unit": "ks",
"quantity": 2
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.4631,
"amount_with_tax": 1.7557
},
"name": "821025",
"descr": "2 dielna pinzetová sada",
"customer_name": null,
"ordernr": "151848",
"brand": {
"name": "TOOLCRAFT"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.4631,
"amount_with_tax": 1.7557
},
"id": 137471,
"unit": "ks",
"quantity": 1
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 2.0952,
"amount_with_tax": 2.514
},
"name": "Alkaline LR03 TECXUS SF4",
"descr": "Batéria alkalická 1,5V AAA fólia",
"customer_name": null,
"ordernr": "77311",
"brand": {
"name": "TECXUS"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.1746,
"amount_with_tax": 0.2095
},
"id": 104738,
"unit": "ks",
"quantity": 12
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.4288,
"amount_with_tax": 1.7146
},
"name": "HT-109",
"descr": "Kliešte štikacie precízne lC do 0,8mm 130mm",
"customer_name": null,
"ordernr": "6144",
"brand": {
"name": "HANLONG"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.4288,
"amount_with_tax": 1.7146
},
"id": 83650,
"unit": "ks",
"quantity": 1
}
],
"number": "12528",
"payment": {
"date": "2016-07-11 02:00:00+02:00",
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "122",
"name": "Prevodom"
},
"delivery": {
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "407",
"name": "Osobný odber v Košiciach"
},
"vs": "1416012528",
"created_date": "2016-07-08 02:00:00+02:00",
"rid": "95386928676893",
"customer_number": "1743",
"id": "577fac4267dca52f00ee9e0f"
},
{
"status": {
"id": "PAID",
"name": "uhradená"
},
"due_date": "2016-11-30 01:00:00+01:00",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 8.28,
"amount_with_tax": 9.94
},
"items_total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 4.28,
"amount_with_tax": 5.14
},
"items": [
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 4.2824,
"amount_with_tax": 5.1388
},
"name": "NIMH 1100 AAA TECXUS BP2",
"descr": "Akumulátor NiMH 1,2V 1100mAh AAA",
"customer_name": null,
"ordernr": "72800",
"brand": {
"name": "TECXUS"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.0706,
"amount_with_tax": 1.2847
},
"id": 103138,
"unit": "ks",
"quantity": 4
}
],
"number": "21395",
"payment": {
"date": "2016-12-01 01:00:00+01:00",
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "122",
"name": "Prevodom"
},
"delivery": {
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 4,
"amount_with_tax": 4.8
},
"id": "1903",
"name": "UPS-Zberná faktúra"
},
"vs": "1416021395",
"created_date": "2016-11-30 01:00:00+01:00",
"rid": "123523259432961",
"customer_number": "1743",
"id": "583e8b3176bb795d6b15eb36"
},
{
"status": {
"id": "PAID",
"name": "uhradená"
},
"due_date": "2017-02-28 01:00:00+01:00",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 20.48,
"amount_with_tax": 24.58
},
"items_total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 20.48,
"amount_with_tax": 24.58
},
"items": [
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 4.7,
"amount_with_tax": 5.64
},
"name": "LED Bulb 9W White",
"descr": "LED žiarovka E27/230V 9W 2700K biela, bal.3ks",
"customer_name": null,
"ordernr": "231580",
"brand": {
"name": "OSRAM"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 4.7,
"amount_with_tax": 5.64
},
"id": 421996,
"unit": "ks",
"quantity": 1
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 15.781,
"amount_with_tax": 18.937
},
"name": "LED Bulb 6W White",
"descr": "LED žiarovka biela 2700K 6W 230VAC E14 A+",
"customer_name": null,
"ordernr": "234555",
"brand": {
"name": "OSRAM"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 3.1562,
"amount_with_tax": 3.7874
},
"id": 428784,
"unit": "ks",
"quantity": 5
}
],
"number": "3668",
"payment": {
"date": "2017-02-28 01:00:00+01:00",
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "122",
"name": "Prevodom"
},
"delivery": {
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "1805",
"name": "Osobne-Zberná faktúra"
},
"vs": "1417003668",
"created_date": "2017-02-28 01:00:00+01:00",
"rid": "143481972457953",
"customer_number": "1743",
"id": "58b538575c75d77047682dee"
},
{
"status": {
"id": "PAID",
"name": "uhradená"
},
"due_date": "2017-05-03 02:00:00+02:00",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 23.45,
"amount_with_tax": 28.14
},
"items_total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 23.45,
"amount_with_tax": 28.14
},
"items": [
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 23.45,
"amount_with_tax": 28.14
},
"name": "ACM-ABS003RD",
"descr": "Kľúčenka RFID Unique 125kHz s EM4100 červená",
"customer_name": null,
"ordernr": "118533",
"brand": {
"name": "ACM"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.469,
"amount_with_tax": 0.5628
},
"id": 123822,
"unit": "ks",
"quantity": 50
}
],
"number": "7853",
"payment": {
"date": "2017-05-03 02:00:00+02:00",
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "124",
"name": "Hotovosť alebo kreditnou kartou"
},
"delivery": {
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "407",
"name": "Osobný odber v Košiciach"
},
"vs": "1417007853",
"created_date": "2017-05-03 02:00:00+02:00",
"rid": "156886565388291",
"customer_number": "1743",
"id": "590971cb5c75d7704768533f"
},
{
"status": {
"id": "PAID",
"name": "uhradená"
},
"due_date": "2017-06-14 02:00:00+02:00",
"total_price": {
"taxrate": 19.9,
"currency": "EUR",
"amount": 3.36,
"amount_with_tax": 4.03
},
"items_total_price": {
"taxrate": 19.9,
"currency": "EUR",
"amount": 3.36,
"amount_with_tax": 4.03
},
"items": [
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 2.8949,
"amount_with_tax": 3.4739
},
"name": "1241.2800",
"descr": "Tlačidlo ANTIVANDAL IP65 D=19mm 48Vdc/125mA",
"customer_name": null,
"ordernr": "61965",
"brand": {
"name": "SCHURTER"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 2.8949,
"amount_with_tax": 3.4739
},
"id": 98563,
"unit": "ks",
"quantity": 1
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.4607,
"amount_with_tax": 0.5528
},
"name": "3ESH9",
"descr": "Multimec tlačidlo bez hmatníka 10x10mm 3N 1mm",
"customer_name": null,
"ordernr": "102380",
"brand": {
"name": "MEC"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.4607,
"amount_with_tax": 0.5528
},
"id": 117397,
"unit": "ks",
"quantity": 1
}
],
"number": "10485",
"payment": {
"date": "2017-06-15 02:00:00+02:00",
"price": {
"taxrate": 19.9,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "124",
"name": "Hotovosť alebo kreditnou kartou"
},
"delivery": {
"price": {
"taxrate": 19.9,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "407",
"name": "Osobný odber v Košiciach"
},
"vs": "1417010485",
"created_date": "2017-06-14 02:00:00+02:00",
"rid": "165622528868436",
"customer_number": "1743",
"id": "594102d65c75d77047686be5"
}
]
}
HTTP status code 400
INVALID_PAYMENT_STATUS
- payment_status must be one of paid, unpaid_before or unpaid_after.
HTTP status code 401
Access token is invalid or missing.
HTTP status code 403
Forbidden.
QUOTA_EXCEEDED
- request count reached maximum allowed value
HTTP status code 404
Object not found.
HTTP status code 409
Conflict.
HTTP status code 500
Body
Media type: application/json
Type: any
Example:
{
"id": "9f426268-4e14-4aa1-96ec-ccf5445aec2d",
"description": "The server encountered an unexpected condition.",
"name": "Internal Server Error",
"code": 500,
"payload": {
"custom_data": "custom"
}
}
Secured by auth_oauth
Headers
- Authorization: required(string)
Odoslanie validného access_token parametra
Example:
Authorization: Bearer d5bc5b2ac2464925a0602d375202fb12eb8d1c1a7c124f78808fb204492530342136ee32ded2431da34e58d881e0af69fee3ebaabc3743e4ad648f7d9a280c4c
HTTP status code 401
Access token is invalid or missing.
Invoice detail.
get /invoices/{invoice_id}
Invoice detail.
Custom OAuth 2.0 authentification
URI Parameters
- invoice_id: required(string)
Headers
- Authorization: required(string)
Bearer token.
Example:
Bearer d5bc5b2ac2464925a0602d375202fb12eb8d1c1a7c124f78808fb204492530342136ee32ded2431da34e58d881e0af69fee3ebaabc3743e4ad648f7d9a280c4c
- Accept-Language: (string - default: en)
Example:
sk-SK, sk;q=0.9, en;q=0.8, de;q=0.7
HTTP status code 200
Body
Media type: application/json
Type: any
Example:
{
"status": {
"id": "PAID",
"name": "uhradená"
},
"due_date": "2016-07-08 02:00:00+02:00",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 12.15,
"amount_with_tax": 14.58
},
"items_total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 12.15,
"amount_with_tax": 14.58
},
"items": [
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 3.8301,
"amount_with_tax": 4.5961
},
"name": "TOOLCRAFT 588182",
"descr": "Hand soldering iron 60W 230VAC D6xL75mm",
"customer_name": "My Label",
"ordernr": "161058",
"brand": {
"name": "TOOLCRAFT"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 3.8301,
"amount_with_tax": 4.5961
},
"id": 140880,
"unit": "szt.",
"quantity": 1
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 2.2665,
"amount_with_tax": 2.7198
},
"name": "UP 915 EP 160x100mm",
"descr": "Test board 37 Strips FR4",
"customer_name": null,
"ordernr": "80378",
"brand": {
"name": "WR RADEMACHER"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 2.2665,
"amount_with_tax": 2.7198
},
"id": 105504,
"unit": "szt.",
"quantity": 1
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.3701,
"amount_with_tax": 0.4441
},
"name": "ROSIN45G",
"descr": "Rosin soldering flux 45g (colophony)",
"customer_name": null,
"ordernr": "165955",
"brand": {
"name": "CYNEL"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.3701,
"amount_with_tax": 0.4441
},
"id": 143394,
"unit": "szt.",
"quantity": 1
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.7,
"amount_with_tax": 0.84
},
"name": "1532 Sn60Pb38Cu2 1,5mm 10g",
"descr": "Solder F-SW26 2,2% ",
"customer_name": null,
"ordernr": "41360",
"brand": {
"name": null
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.35,
"amount_with_tax": 0.42
},
"id": 90774,
"unit": "szt.",
"quantity": 2
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.4631,
"amount_with_tax": 1.7557
},
"name": "821025",
"descr": "Set Of Tweezers Curved/Straight 2pc ",
"customer_name": null,
"ordernr": "151848",
"brand": {
"name": "TOOLCRAFT"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.4631,
"amount_with_tax": 1.7557
},
"id": 137471,
"unit": "szt.",
"quantity": 1
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 2.0952,
"amount_with_tax": 2.514
},
"name": "Alkaline LR03 TECXUS SF4",
"descr": "Bateria alkaliczna 1,5V AAA folia",
"customer_name": null,
"ordernr": "77311",
"brand": {
"name": "TECXUS"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.1746,
"amount_with_tax": 0.2095
},
"id": 104738,
"unit": "szt.",
"quantity": 12
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.4288,
"amount_with_tax": 1.7146
},
"name": "HT-109",
"descr": "Plier side cutter precise IC 0,8mm 130mm ",
"customer_name": null,
"ordernr": "6144",
"brand": {
"name": "HANLONG"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.4288,
"amount_with_tax": 1.7146
},
"id": 83650,
"unit": "szt.",
"quantity": 1
}
],
"number": "12528",
"payment": {
"date": "2016-07-11 02:00:00+02:00",
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "122",
"name": "Przelew bankowy"
},
"delivery": {
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "407",
"name": "Personally"
},
"vs": "1416012528",
"created_date": "2016-07-08 02:00:00+02:00",
"rid": "95386928676893",
"customer_number": "1743",
"id": "577fac4267dca52f00ee9e0f"
}
HTTP status code 401
Access token is invalid or missing.
HTTP status code 403
Forbidden.
QUOTA_EXCEEDED
- request count reached maximum allowed value
HTTP status code 404
Object not found.
HTTP status code 409
Conflict.
HTTP status code 500
Body
Media type: application/json
Type: any
Example:
{
"id": "9f426268-4e14-4aa1-96ec-ccf5445aec2d",
"description": "The server encountered an unexpected condition.",
"name": "Internal Server Error",
"code": 500,
"payload": {
"custom_data": "custom"
}
}
Secured by auth_oauth
Headers
- Authorization: required(string)
Odoslanie validného access_token parametra
Example:
Authorization: Bearer d5bc5b2ac2464925a0602d375202fb12eb8d1c1a7c124f78808fb204492530342136ee32ded2431da34e58d881e0af69fee3ebaabc3743e4ad648f7d9a280c4c
HTTP status code 401
Access token is invalid or missing.
/orders
List of opened orders.
get /orders/open
List of opened orders.
Custom OAuth 2.0 authentification
Headers
- Authorization: required(string)
Bearer token.
Example:
Bearer d5bc5b2ac2464925a0602d375202fb12eb8d1c1a7c124f78808fb204492530342136ee32ded2431da34e58d881e0af69fee3ebaabc3743e4ad648f7d9a280c4c
- Accept-Language: (string - default: en)
Example:
sk-SK, sk;q=0.9, en;q=0.8, de;q=0.7
Query Parameters
- limit: (integer - default: 10 - minimum: 0 - maximum: 250)
- offset: (integer - default: 0 - minimum: 0)
HTTP status code 200
Body
Media type: application/json
Type: any
Example:
{
"paging": {
"total": 96,
"limit": 5,
"offset": 0
},
"orders": [
{
"status": {
"id": "NEW",
"name": "prijatá"
},
"due_date": null,
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 70.09,
"amount_with_tax": 84.11
},
"items_total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 66.09,
"amount_with_tax": 79.31
},
"items": [
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 18.2046,
"amount_with_tax": 21.8455
},
"name": "AT32UC3A1512-AUT",
"descr": "AVR 32 UC3 A1 Microcontroller 32-Bit 66MHz 512kB FLASH TQFP100 ",
"ordernr": "116564",
"brand": {
"name": "MICROCHIP (ATMEL)"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 9.1023,
"amount_with_tax": 10.9228
},
"quantity": 2,
"id": 123069,
"unit": "pcs",
"customer_name": null
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 15.3842,
"amount_with_tax": 18.461
},
"name": "STM32F417VG",
"descr": "ARM Cortex-M4 STM 32 F4 Microcontroller 32-Bit 168MHz 1MB FLASH LQFP100 ",
"ordernr": "142104",
"brand": {
"name": "STMICROELECTRONICS"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 7.6921,
"amount_with_tax": 9.2305
},
"quantity": 2,
"id": 131404,
"unit": "pcs",
"customer_name": null
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"name": "2JW031-868-C442B",
"descr": "ISM Antenna RP SMA M ",
"ordernr": "163164",
"brand": {
"name": "2J"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"quantity": 1,
"id": 141269,
"unit": "pcs",
"customer_name": null
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 3.34,
"amount_with_tax": 4.008
},
"name": "KDPU X7R RM5,08 0,01uF 100V 10% (SR211C103KAR)",
"descr": "Ceramic Capacitor Leaded Multilay Reel 10nF ",
"ordernr": "162655",
"brand": {
"name": "AVX"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.0334,
"amount_with_tax": 0.0401
},
"quantity": 100,
"id": 141190,
"unit": "pcs",
"customer_name": null
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 6.0824,
"amount_with_tax": 7.2989
},
"name": "FT900L-T",
"descr": "FT32 FT90x Microcontroller 32-Bit 100MHz 256kB FLASH LQFP100 ",
"ordernr": "204372",
"brand": {
"name": "BRIDGETEK"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 6.0824,
"amount_with_tax": 7.2989
},
"quantity": 1,
"id": 162555,
"unit": "pcs",
"customer_name": null
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"name": "DSPIC30F4012-30I/SP",
"descr": "dsPIC 30F Microcontroller 16-Bit 30 MIPs 48KB FLASH DIP28 ",
"ordernr": "87196",
"brand": {
"name": "MICROCHIP"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"quantity": 1,
"id": 107956,
"unit": "pcs",
"customer_name": null
},
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 23.0743,
"amount_with_tax": 27.6892
},
"name": "M66TE-A",
"descr": "M66 GSM Module on Adaptor Board (not offered in your region)",
"ordernr": "163017",
"brand": {
"name": "QUECTEL"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 23.0743,
"amount_with_tax": 27.6892
},
"quantity": 1,
"id": 141250,
"unit": "pcs",
"customer_name": null
}
],
"number": "f4930356-bc85-4163-be74-6de57a75226b",
"payment": {
"date": null,
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "123",
"name": "Cash on delivery"
},
"delivery": {
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 4,
"amount_with_tax": 4.8
},
"id": "408",
"name": "UPS"
},
"vs": "1170801005",
"created_date": "2017-08-01 12:29:18.204000+02:00",
"rid": null,
"customer_number": "112323",
"id": "f4930356-bc85-4163-be74-6de57a75226b"
},
{
"status": {
"id": "NEW",
"name": "prijatá"
},
"due_date": null,
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 4,
"amount_with_tax": 4.8
},
"items_total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"items": [
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"name": "DSPIC30F4012-30I/SP",
"descr": "dsPIC 30F Microcontroller 16-Bit 30 MIPs 48KB FLASH DIP28 ",
"ordernr": "87196",
"brand": {
"name": "MICROCHIP"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"quantity": 1,
"id": 107956,
"unit": "pcs",
"customer_name": null
}
],
"number": "4a4d1367-afbd-4d19-9dc6-38a401f22515",
"payment": {
"date": null,
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "123",
"name": "Cash on delivery"
},
"delivery": {
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 4,
"amount_with_tax": 4.8
},
"id": "408",
"name": "UPS"
},
"vs": "1170801003",
"created_date": "2017-08-01 10:17:14.959000+02:00",
"rid": null,
"customer_number": "112323",
"id": "4a4d1367-afbd-4d19-9dc6-38a401f22515"
},
{
"status": {
"id": "NEW",
"name": "prijatá"
},
"due_date": null,
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 9.49,
"amount_with_tax": 11.39
},
"items_total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 2.49,
"amount_with_tax": 2.99
},
"items": [
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 2.4874,
"amount_with_tax": 2.9849
},
"name": "AT 89 C 2051-24PU",
"descr": "89C Microcontroller 8-bit 24MHz 2KB FLASH DIP20 ",
"ordernr": "3147",
"brand": {
"name": "MICROCHIP (ATMEL)"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.2437,
"amount_with_tax": 1.4924
},
"quantity": 2,
"id": 82931,
"unit": "pcs",
"customer_name": null
}
],
"number": "602974d6-6a1c-41d8-85d7-0614ac08625f",
"payment": {
"date": null,
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "123",
"name": "Cash on delivery"
},
"delivery": {
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 4,
"amount_with_tax": 4.8
},
"id": "408",
"name": "UPS"
},
"vs": "1170801002",
"created_date": "2017-08-01 10:16:28.918000+02:00",
"rid": null,
"customer_number": "112323",
"id": "602974d6-6a1c-41d8-85d7-0614ac08625f"
},
{
"status": {
"id": "NEW",
"name": "prijatá"
},
"due_date": null,
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 8.99,
"amount_with_tax": 10.79
},
"items_total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.99,
"amount_with_tax": 2.39
},
"items": [
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.99,
"amount_with_tax": 2.388
},
"name": "AT 89 C 2051-24PU",
"descr": "89C Microcontroller 8-bit 24MHz 2KB FLASH DIP20 ",
"ordernr": "3147",
"brand": {
"name": "MICROCHIP (ATMEL)"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.99,
"amount_with_tax": 2.388
},
"quantity": 1,
"id": 82931,
"unit": "pcs",
"customer_name": null
}
],
"number": "c7a29c2a-b1b2-42c9-b7ac-014e2edb1eb6",
"payment": {
"date": null,
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "123",
"name": "Cash on delivery"
},
"delivery": {
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 4,
"amount_with_tax": 4.8
},
"id": "408",
"name": "UPS"
},
"vs": "1170801001",
"created_date": "2017-08-01 10:11:20.365000+02:00",
"rid": null,
"customer_number": "112323",
"id": "c7a29c2a-b1b2-42c9-b7ac-014e2edb1eb6"
},
{
"status": {
"id": "NEW",
"name": "prijatá"
},
"due_date": null,
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 9.44,
"amount_with_tax": 11.33
},
"items_total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"items": [],
"number": "12878",
"payment": {
"date": null,
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "123",
"name": "Cash on delivery"
},
"delivery": {
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "1270",
"name": "UPS"
},
"vs": "1170712071",
"created_date": "2017-07-12 02:00:00+02:00",
"rid": "171334835372063",
"customer_number": "112323",
"id": "40e537a0-0ecf-40ce-b49a-8c827a84ab4d"
}
]
}
HTTP status code 401
Access token is invalid or missing.
HTTP status code 403
Forbidden.
QUOTA_EXCEEDED
- request count reached maximum allowed value
HTTP status code 404
Object not found.
HTTP status code 409
Conflict.
HTTP status code 500
Body
Media type: application/json
Type: any
Example:
{
"id": "9f426268-4e14-4aa1-96ec-ccf5445aec2d",
"description": "The server encountered an unexpected condition.",
"name": "Internal Server Error",
"code": 500,
"payload": {
"custom_data": "custom"
}
}
Secured by auth_oauth
Headers
- Authorization: required(string)
Odoslanie validného access_token parametra
Example:
Authorization: Bearer d5bc5b2ac2464925a0602d375202fb12eb8d1c1a7c124f78808fb204492530342136ee32ded2431da34e58d881e0af69fee3ebaabc3743e4ad648f7d9a280c4c
HTTP status code 401
Access token is invalid or missing.
List of undelivered products.
get /orders/open/products
List of undelivered products.
Custom OAuth 2.0 authentification
Headers
- Authorization: required(string)
Bearer token.
Example:
Bearer d5bc5b2ac2464925a0602d375202fb12eb8d1c1a7c124f78808fb204492530342136ee32ded2431da34e58d881e0af69fee3ebaabc3743e4ad648f7d9a280c4c
- Accept-Language: (string - default: en)
Example:
sk-SK, sk;q=0.9, en;q=0.8, de;q=0.7
Query Parameters
- status: required(one of registered, packaged, ready-for-pickup)
Product status.
registered
- non-delivered itemspackaged
- items being prepared in warehouseready-for-pickup
- products are ready to be personally picked up
HTTP status code 200
Body
Media type: application/json
Type: any
Example:
{
"products": [
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1170801005",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 18.2046,
"amount_with_tax": 21.8455
},
"order_label": "2017/08/01",
"name": "AT32UC3A1512-AUT",
"descr": "AVR 32 UC3 A1 Microcontroller 32-Bit 66MHz 512kB FLASH TQFP100 ",
"ordernr": "116564",
"order_id": "f4930356-bc85-4163-be74-6de57a75226b",
"brand": {
"name": "MICROCHIP (ATMEL)"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 9.1023,
"amount_with_tax": 10.9228
},
"order_created": "2017-08-01 12:29:18.204000+02:00",
"quantity": 2,
"availability": {
"on_stock_delivery": [],
"in_store": 21,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1170801005",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 15.3842,
"amount_with_tax": 18.461
},
"order_label": "2017/08/01",
"name": "STM32F417VG",
"descr": "ARM Cortex-M4 STM 32 F4 Microcontroller 32-Bit 168MHz 1MB FLASH LQFP100 ",
"ordernr": "142104",
"order_id": "f4930356-bc85-4163-be74-6de57a75226b",
"brand": {
"name": "STMICROELECTRONICS"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 7.6921,
"amount_with_tax": 9.2305
},
"order_created": "2017-08-01 12:29:18.204000+02:00",
"quantity": 2,
"availability": {
"on_stock_delivery": [],
"in_store": 71,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1170801005",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"order_label": "2017/08/01",
"name": "2JW031-868-C442B",
"descr": "ISM Antenna RP SMA M ",
"ordernr": "163164",
"order_id": "f4930356-bc85-4163-be74-6de57a75226b",
"brand": {
"name": "2J"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"order_created": "2017-08-01 12:29:18.204000+02:00",
"quantity": 1,
"availability": {
"on_stock_delivery": [],
"in_store": 3,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1170801005",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 3.34,
"amount_with_tax": 4.008
},
"order_label": "2017/08/01",
"name": "KDPU X7R RM5,08 0,01uF 100V 10% (SR211C103KAR)",
"descr": "Ceramic Capacitor Leaded Multilay Reel 10nF ",
"ordernr": "162655",
"order_id": "f4930356-bc85-4163-be74-6de57a75226b",
"brand": {
"name": "AVX"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.0334,
"amount_with_tax": 0.0401
},
"order_created": "2017-08-01 12:29:18.204000+02:00",
"quantity": 100,
"availability": {
"on_stock_delivery": [],
"in_store": 5194,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1170801005",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 6.0824,
"amount_with_tax": 7.2989
},
"order_label": "2017/08/01",
"name": "FT900L-T",
"descr": "FT32 FT90x Microcontroller 32-Bit 100MHz 256kB FLASH LQFP100 ",
"ordernr": "204372",
"order_id": "f4930356-bc85-4163-be74-6de57a75226b",
"brand": {
"name": "BRIDGETEK"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 6.0824,
"amount_with_tax": 7.2989
},
"order_created": "2017-08-01 12:29:18.204000+02:00",
"quantity": 1,
"availability": {
"on_stock_delivery": [],
"in_store": 16,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1170801005",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"order_label": "2017/08/01",
"name": "DSPIC30F4012-30I/SP",
"descr": "dsPIC 30F Microcontroller 16-Bit 30 MIPs 48KB FLASH DIP28 ",
"ordernr": "87196",
"order_id": "f4930356-bc85-4163-be74-6de57a75226b",
"brand": {
"name": "MICROCHIP"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"order_created": "2017-08-01 12:29:18.204000+02:00",
"quantity": 1,
"availability": {
"on_stock_delivery": [],
"in_store": 0,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1170801005",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 23.0743,
"amount_with_tax": 27.6892
},
"order_label": "2017/08/01",
"name": "M66TE-A",
"descr": "M66 GSM Module on Adaptor Board (not offered in your region)",
"ordernr": "163017",
"order_id": "f4930356-bc85-4163-be74-6de57a75226b",
"brand": {
"name": "QUECTEL"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 23.0743,
"amount_with_tax": 27.6892
},
"order_created": "2017-08-01 12:29:18.204000+02:00",
"quantity": 1,
"availability": {
"on_stock_delivery": [],
"in_store": 5,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1170801003",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"order_label": "2017/08/01",
"name": "DSPIC30F4012-30I/SP",
"descr": "dsPIC 30F Microcontroller 16-Bit 30 MIPs 48KB FLASH DIP28 ",
"ordernr": "87196",
"order_id": "4a4d1367-afbd-4d19-9dc6-38a401f22515",
"brand": {
"name": "MICROCHIP"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"order_created": "2017-08-01 10:17:14.959000+02:00",
"quantity": 1,
"availability": {
"on_stock_delivery": [],
"in_store": 0,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1170801002",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 2.4874,
"amount_with_tax": 2.9849
},
"order_label": "2017/08/01",
"name": "AT 89 C 2051-24PU",
"descr": "89C Microcontroller 8-bit 24MHz 2KB FLASH DIP20 ",
"ordernr": "3147",
"order_id": "602974d6-6a1c-41d8-85d7-0614ac08625f",
"brand": {
"name": "MICROCHIP (ATMEL)"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.2437,
"amount_with_tax": 1.4924
},
"order_created": "2017-08-01 10:16:28.918000+02:00",
"quantity": 2,
"availability": {
"on_stock_delivery": [],
"in_store": 469,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1170801001",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.99,
"amount_with_tax": 2.388
},
"order_label": "2017/08/01",
"name": "AT 89 C 2051-24PU",
"descr": "89C Microcontroller 8-bit 24MHz 2KB FLASH DIP20 ",
"ordernr": "3147",
"order_id": "c7a29c2a-b1b2-42c9-b7ac-014e2edb1eb6",
"brand": {
"name": "MICROCHIP (ATMEL)"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.99,
"amount_with_tax": 2.388
},
"order_created": "2017-08-01 10:11:20.365000+02:00",
"quantity": 1,
"availability": {
"on_stock_delivery": [],
"in_store": 469,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1161116015",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"order_label": "2016/11/16",
"name": "DSPIC33EP256MU806-I/PT",
"descr": "dsPIC 33EP Microcontroller 16-Bit 60 MIPs 256KB FLASH TQFP64 ",
"ordernr": "160962",
"order_id": "0ab63fb0-f153-44b0-afd8-121917ac9565",
"brand": {
"name": "MICROCHIP"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"order_created": "2016-11-16 09:46:12.531000+01:00",
"quantity": 1,
"availability": {
"on_stock_delivery": [],
"in_store": 0,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1161116015",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 17.11,
"amount_with_tax": 20.532
},
"order_label": "2016/11/16",
"name": "4.3'' TFT Color Display (MIKROE-1401)",
"descr": "480x272 with Touch Screen ",
"ordernr": "156696",
"order_id": "0ab63fb0-f153-44b0-afd8-121917ac9565",
"brand": {
"name": "MIKROELEKTRONIKA"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 17.11,
"amount_with_tax": 20.532
},
"order_created": "2016-11-16 09:46:12.531000+01:00",
"quantity": 1,
"availability": {
"on_stock_delivery": [],
"in_store": 7,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1161116015",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"order_label": "2016/11/16",
"name": "DSPIC33FJ128GP202-I/MM-ND",
"descr": "dsPIC 33F Microcontroller 16-Bit 40 MIPs 128KB FLASH QFNS28 ",
"ordernr": "167374",
"order_id": "0ab63fb0-f153-44b0-afd8-121917ac9565",
"brand": {
"name": "MICROCHIP"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"order_created": "2016-11-16 09:46:12.531000+01:00",
"quantity": 1,
"availability": {
"on_stock_delivery": [],
"in_store": 0,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1161116015",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 9.11,
"amount_with_tax": 10.932
},
"order_label": "2016/11/16",
"name": "AT91SAM7X256C-AU",
"descr": "ARM7 SAM7X Microcontroller 16/32-Bit 55MHz 256kB FLASH LQFP100 ",
"ordernr": "167771",
"order_id": "0ab63fb0-f153-44b0-afd8-121917ac9565",
"brand": {
"name": "MICROCHIP (ATMEL)"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 9.11,
"amount_with_tax": 10.932
},
"order_created": "2016-11-16 09:46:12.531000+01:00",
"quantity": 1,
"availability": {
"on_stock_delivery": [],
"in_store": 0,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1161116015",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"order_label": "2016/11/16",
"name": "DSPIC33EP512MU810-I/PT",
"descr": "dsPIC 33EP Microcontroller 16-Bit 70 MIPs 512KB FLASH TQFP100 ",
"ordernr": "180875",
"order_id": "0ab63fb0-f153-44b0-afd8-121917ac9565",
"brand": {
"name": "MICROCHIP"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"order_created": "2016-11-16 09:46:12.531000+01:00",
"quantity": 1,
"availability": {
"on_stock_delivery": [],
"in_store": 0,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1161116015",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.5964,
"amount_with_tax": 1.9157
},
"order_label": "2016/11/16",
"name": "24 LC 65/SM",
"descr": "EEPROM Serial 64K (8Kx8) 400kHz I2C SO8 (208mil) ",
"ordernr": "6268",
"order_id": "0ab63fb0-f153-44b0-afd8-121917ac9565",
"brand": {
"name": "MICROCHIP"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.7982,
"amount_with_tax": 0.9578
},
"order_created": "2016-11-16 09:46:12.531000+01:00",
"quantity": 2,
"availability": {
"on_stock_delivery": [],
"in_store": 0,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1161108069",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.682,
"amount_with_tax": 0.8184
},
"order_label": "2016/11/08",
"name": "30 CPQ 150 PBF",
"descr": "Diode Schottky 15A/150V TO247AC ",
"ordernr": "8334",
"order_id": "de6efcca-56c9-4941-a70c-35cfd2ada0d5",
"brand": {
"name": "INFINEON"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.682,
"amount_with_tax": 0.8184
},
"order_created": "2016-11-08 14:00:45.004000+01:00",
"quantity": 1,
"availability": {
"on_stock_delivery": [],
"in_store": 1017,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1161026001",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 3.3,
"amount_with_tax": 3.96
},
"order_label": "2016/10/26",
"name": "KP-2012 SGC",
"descr": "LED 2x1,25mm Green 568nm 15mcd/20mA 120° 0805 ",
"ordernr": "12659",
"order_id": "4e4f0f36-c8d7-47d3-bb89-7c12fd41213a",
"brand": {
"name": "KINGBRIGHT"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.0275,
"amount_with_tax": 0.033
},
"order_created": "2016-10-26 06:50:58.941000+02:00",
"quantity": 120,
"availability": {
"on_stock_delivery": [],
"in_store": 19120,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1161026001",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 17.11,
"amount_with_tax": 20.532
},
"order_label": "2016/10/26",
"name": "4.3'' TFT Color Display (MIKROE-1401)",
"descr": "480x272 with Touch Screen ",
"ordernr": "156696",
"order_id": "4e4f0f36-c8d7-47d3-bb89-7c12fd41213a",
"brand": {
"name": "MIKROELEKTRONIKA"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 17.11,
"amount_with_tax": 20.532
},
"order_created": "2016-10-26 06:50:58.941000+02:00",
"quantity": 1,
"availability": {
"on_stock_delivery": [],
"in_store": 7,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1160711029",
"total_price": {
"taxrate": 19,
"currency": "EUR",
"amount": 3.56,
"amount_with_tax": 4.2364
},
"order_label": "2016/07/11",
"name": "EC11B15244A7",
"descr": "Encoder 11mm, 15pulse/30position, 6/20mm, button ",
"ordernr": "56494",
"order_id": "d7847bb4-d3da-43eb-82e9-58153ccb099c",
"brand": {
"name": "ALPS"
},
"unit_price": {
"taxrate": 19,
"currency": "EUR",
"amount": 1.78,
"amount_with_tax": 2.1182
},
"order_created": "2016-07-11 11:03:50.513000+02:00",
"quantity": 2,
"availability": {
"on_stock_delivery": [],
"in_store": 111,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1160701025",
"total_price": {
"taxrate": 19,
"currency": "EUR",
"amount": 17.11,
"amount_with_tax": 20.3609
},
"order_label": "2016/07/01",
"name": "4.3'' TFT Color Display (MIKROE-1401)",
"descr": "480x272 with Touch Screen ",
"ordernr": "156696",
"order_id": "5f24c52f-bb69-4ee8-a09a-8f217c066cff",
"brand": {
"name": "MIKROELEKTRONIKA"
},
"unit_price": {
"taxrate": 19,
"currency": "EUR",
"amount": 17.11,
"amount_with_tax": 20.3609
},
"order_created": "2016-07-01 12:19:48.772000+02:00",
"quantity": 1,
"availability": {
"on_stock_delivery": [],
"in_store": 7,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1160609003",
"total_price": {
"taxrate": 19,
"currency": "EUR",
"amount": 1.045,
"amount_with_tax": 1.2435
},
"order_label": "2016/06/09",
"name": "208-8 10% 39 R (KH208-810B39R)",
"descr": "Wirewound Resistor 5W 6,4x6,4x25mm ",
"ordernr": "15056",
"order_id": "ec4a6fa3-c2be-455f-94fc-1320aea4fd18",
"brand": {
"name": "VITROHM"
},
"unit_price": {
"taxrate": 19,
"currency": "EUR",
"amount": 0.209,
"amount_with_tax": 0.2487
},
"order_created": "2016-06-09 07:43:47.882000+02:00",
"quantity": 5,
"availability": {
"on_stock_delivery": [],
"in_store": 0,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1160609003",
"total_price": {
"taxrate": 19,
"currency": "EUR",
"amount": 395,
"amount_with_tax": 470.05
},
"order_label": "2016/06/09",
"name": "AC250K1D-S",
"descr": "Laboratory Power Supply Stabil. 0-255V/1A, LED ",
"ordernr": "48331",
"order_id": "ec4a6fa3-c2be-455f-94fc-1320aea4fd18",
"brand": {
"name": "DIAMETRAL"
},
"unit_price": {
"taxrate": 19,
"currency": "EUR",
"amount": 395,
"amount_with_tax": 470.05
},
"order_created": "2016-06-09 07:43:47.882000+02:00",
"quantity": 1,
"availability": {
"on_stock_delivery": [],
"in_store": 2,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1160601013",
"total_price": {
"taxrate": 19,
"currency": "EUR",
"amount": 2.7624,
"amount_with_tax": 3.2873
},
"order_label": "2016/06/01",
"name": "AD5622BKSZ-2REEL7",
"descr": "D/A Converter 12-Bit I2C SC70-6 ",
"ordernr": "159026",
"order_id": "743a308c-afb4-4509-8559-742abd156b8e",
"brand": {
"name": "ANALOG DEVICES"
},
"unit_price": {
"taxrate": 19,
"currency": "EUR",
"amount": 2.7624,
"amount_with_tax": 3.2873
},
"order_created": "2016-06-01 09:43:02.244000+02:00",
"quantity": 1,
"availability": {
"on_stock_delivery": [],
"in_store": 20,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1160519011",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.418,
"amount_with_tax": 0.5016
},
"order_label": "2016/05/19",
"name": "208-8 10% 39 R (KH208-810B39R)",
"descr": "Wirewound Resistor 5W 6,4x6,4x25mm ",
"ordernr": "15056",
"order_id": "74ee1b5b-8858-47e4-866d-9d6a227a63cd",
"brand": {
"name": "VITROHM"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.209,
"amount_with_tax": 0.2508
},
"order_created": "2016-05-19 09:07:21.662000+02:00",
"quantity": 2,
"availability": {
"on_stock_delivery": [],
"in_store": 0,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1160510026",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.3289,
"amount_with_tax": 0.3947
},
"order_label": "2016/05/10",
"name": "AT25DF081A-SH-B",
"descr": "DataFLASH 8M (4096x256) 100MHz SPI SO8 (208mil) ",
"ordernr": "188219",
"order_id": "7a3124ce-545d-4db7-b242-519d37659dd5",
"brand": {
"name": "ADESTO"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.3289,
"amount_with_tax": 0.3947
},
"order_created": "2016-05-10 10:44:13.627000+02:00",
"quantity": 1,
"availability": {
"on_stock_delivery": [],
"in_store": 182,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1160510016",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.23,
"amount_with_tax": 0.276
},
"order_label": "2016/05/10",
"name": "BAS 40-05",
"descr": "Diode Schottky 0,2A/40V SOT23 ",
"ordernr": "34631",
"order_id": "49931013-b618-4adc-b98d-74c29918e55c",
"brand": {
"name": "DIOTEC"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.0115,
"amount_with_tax": 0.0138
},
"order_created": "2016-05-10 09:31:22.534000+02:00",
"quantity": 20,
"availability": {
"on_stock_delivery": [],
"in_store": 63,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1160509005",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"order_label": "2016/05/09",
"name": "1837.8102",
"descr": "Lamp 30x22 230V Black/Red F6,3 ",
"ordernr": "214181",
"order_id": "8c582bef-9ab7-48cf-9c2a-ff958f77cca3",
"brand": {
"name": "MARQUARDT"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"order_created": "2016-05-09 08:15:57.134000+02:00",
"quantity": 1,
"availability": {
"on_stock_delivery": [],
"in_store": 0,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1160509005",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.3289,
"amount_with_tax": 0.3947
},
"order_label": "2016/05/09",
"name": "AT25DF081A-SH-B",
"descr": "DataFLASH 8M (4096x256) 100MHz SPI SO8 (208mil) ",
"ordernr": "188219",
"order_id": "8c582bef-9ab7-48cf-9c2a-ff958f77cca3",
"brand": {
"name": "ADESTO"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.3289,
"amount_with_tax": 0.3947
},
"order_created": "2016-05-09 08:15:57.134000+02:00",
"quantity": 1,
"availability": {
"on_stock_delivery": [],
"in_store": 182,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
},
{
"status": {
"id": "registered",
"name": "registered"
},
"order_vs": "1160504007",
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 7.7,
"amount_with_tax": 9.24
},
"order_label": "2016/05/04",
"name": "O-26,0-JO53-B-3,3-1-T1",
"descr": "Oscillator SMD 3,3V 5,0x3,2x1,4mm ",
"ordernr": "68996",
"order_id": "e8d373b3-d3c7-424c-a8b9-7168b0e384fd",
"brand": {
"name": "JAUCH"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0.77,
"amount_with_tax": 0.924
},
"order_created": "2016-05-04 08:55:24.195000+02:00",
"quantity": 10,
"availability": {
"on_stock_delivery": [],
"in_store": 10,
"ordered": 0
},
"unit": "pcs",
"customer_name": null
}
]
}
HTTP status code 400
INVALID_STATUS
- status is invalid
HTTP status code 401
Access token is invalid or missing.
HTTP status code 403
Forbidden.
QUOTA_EXCEEDED
- request count reached maximum allowed value
HTTP status code 404
Object not found.
HTTP status code 409
Conflict.
HTTP status code 500
Body
Media type: application/json
Type: any
Example:
{
"id": "9f426268-4e14-4aa1-96ec-ccf5445aec2d",
"description": "The server encountered an unexpected condition.",
"name": "Internal Server Error",
"code": 500,
"payload": {
"custom_data": "custom"
}
}
Secured by auth_oauth
Headers
- Authorization: required(string)
Odoslanie validného access_token parametra
Example:
Authorization: Bearer d5bc5b2ac2464925a0602d375202fb12eb8d1c1a7c124f78808fb204492530342136ee32ded2431da34e58d881e0af69fee3ebaabc3743e4ad648f7d9a280c4c
HTTP status code 401
Access token is invalid or missing.
Order detail.
get /orders/{order_id}
Order detail.
Custom OAuth 2.0 authentification
URI Parameters
- order_id: required(string)
Headers
- Authorization: required(string)
Bearer token.
Example:
Bearer d5bc5b2ac2464925a0602d375202fb12eb8d1c1a7c124f78808fb204492530342136ee32ded2431da34e58d881e0af69fee3ebaabc3743e4ad648f7d9a280c4c
- Accept-Language: (string - default: en)
Example:
sk-SK, sk;q=0.9, en;q=0.8, de;q=0.7
HTTP status code 200
Body
Media type: application/json
Type: any
Example:
{
"status": {
"id": "NEW",
"name": "prijatá"
},
"due_date": null,
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 4,
"amount_with_tax": 4.8
},
"items_total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"items": [
{
"total_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"name": "DSPIC30F4012-30I/SP",
"descr": "dsPIC 30F Microcontroller 16-Bit 30 MIPs 48KB FLASH DIP28 ",
"ordernr": "87196",
"brand": {
"name": "MICROCHIP"
},
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"quantity": 1,
"id": 107956,
"unit": "pcs",
"customer_name": null
}
],
"number": "4a4d1367-afbd-4d19-9dc6-38a401f22515",
"payment": {
"date": null,
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 0,
"amount_with_tax": 0
},
"id": "123",
"name": "Cash on delivery"
},
"delivery": {
"price": {
"taxrate": 20,
"currency": "EUR",
"amount": 4,
"amount_with_tax": 4.8
},
"id": "408",
"name": "UPS"
},
"vs": "1170801003",
"created_date": "2017-08-01 10:17:14.959000+02:00",
"rid": null,
"customer_number": "112323",
"id": "4a4d1367-afbd-4d19-9dc6-38a401f22515"
}
HTTP status code 401
Access token is invalid or missing.
HTTP status code 403
Forbidden.
QUOTA_EXCEEDED
- request count reached maximum allowed value
HTTP status code 404
Object not found.
HTTP status code 409
Conflict.
HTTP status code 500
Body
Media type: application/json
Type: any
Example:
{
"id": "9f426268-4e14-4aa1-96ec-ccf5445aec2d",
"description": "The server encountered an unexpected condition.",
"name": "Internal Server Error",
"code": 500,
"payload": {
"custom_data": "custom"
}
}
Secured by auth_oauth
Headers
- Authorization: required(string)
Odoslanie validného access_token parametra
Example:
Authorization: Bearer d5bc5b2ac2464925a0602d375202fb12eb8d1c1a7c124f78808fb204492530342136ee32ded2431da34e58d881e0af69fee3ebaabc3743e4ad648f7d9a280c4c
HTTP status code 401
Access token is invalid or missing.
/products
List of products.
get /products
List of products.
Custom OAuth 2.0 authentification
Headers
- Authorization: required(string)
Bearer token.
Example:
Bearer d5bc5b2ac2464925a0602d375202fb12eb8d1c1a7c124f78808fb204492530342136ee32ded2431da34e58d881e0af69fee3ebaabc3743e4ad648f7d9a280c4c
- Accept-Language: (string - default: en)
Example:
sk-SK, sk;q=0.9, en;q=0.8, de;q=0.7
Query Parameters
- sorter: (one of name_asc, name_desc, product_type_asc, product_type_desc, ordernr_asc, ordernr_desc, brand_asc, brand_desc)
Product sorter. Multiple values are split by char
|
. - limit: (integer - default: 10 - minimum: 0 - maximum: 250)
- offset: (integer - default: 0 - minimum: 0)
- query: (string - minLength: 3)
Search query string.
Example:
query=stm32f
- brand: (string)
Filter by manufacturer name. Multiple values are split by char
|
.Example:
brand=STMICROELECTRONICS|ATMEL
HTTP status code 200
Body
Media type: application/json
Type: any
Example:
{
"paging": {
"total": 388,
"limit": 10,
"offset": 0
},
"products": [
{
"category": {
"name": "Microcontrollers"
},
"picture": {
"url": "https://cdn.soselectronic.com/productdata/66/ac/3792a5c4/cs8900a-cqz.jpg"
},
"moq": 1,
"name": "STM32F101VBT6",
"descr": "ARM Cortex-M3 STM32 F1 Microcontroller 32-Bit 36MHz 128kB FLASH LQFP100 ",
"ordernr": "69434",
"url": "http://www.sos-com.test/products/stmicroelectronics/stm32f101vbt6-69434",
"brand": {
"name": "STMICROELECTRONICS"
},
"indivisible_quantity": 1,
"multiple_quantity": 1,
"packing": 0,
"packing_type": null,
"parameters": [
{
"unit": null,
"name": "FLASH Size",
"value": "128kB"
},
{
"unit": "V",
"name": "Supply Voltage Min",
"value": "2"
},
{
"unit": null,
"name": "Case",
"value": "LQFP100"
},
{
"unit": null,
"name": "Core / Family",
"value": "STM32 F1"
},
{
"unit": "V",
"name": "Supply Voltage Max",
"value": "3,6"
},
{
"unit": null,
"name": "Mounting Type",
"value": "SMD"
},
{
"unit": null,
"name": "RAM Size",
"value": "16kB"
},
{
"unit": null,
"name": "EEPROM Size",
"value": "none"
},
{
"unit": "MHz",
"name": "Core Frequency",
"value": "36"
},
{
"unit": null,
"name": "Note",
"value": "-"
},
{
"unit": null,
"name": "Series",
"value": "STM32"
}
],
"product_type": "O",
"pricelist": [],
"document": null,
"availability": {
"on_stock_delivery": [],
"in_store": null,
"ordered": 0,
"external": {
"lead_time": "in 5-15 days",
"stock": 0
}
},
"unit": "pcs",
"customer_name": null
},
{
"category": {
"name": "Microcontrollers"
},
"picture": {
"url": "https://cdn.soselectronic.com/productdata/33/5b/e3f2f643/at91sam7s256d-au.jpg"
},
"moq": 160,
"name": "STM32F107RBT6",
"descr": "ARM Cortex-M3 STM32 F1 Microcontroller 32-Bit 72MHz 128kB FLASH LQFP64 ",
"ordernr": "88212",
"url": "http://www.sos-com.test/products/stmicroelectronics/stm32f107rbt6-88212",
"brand": {
"name": "STMICROELECTRONICS"
},
"indivisible_quantity": 1,
"multiple_quantity": 1,
"packing": 160,
"packing_type": null,
"parameters": [
{
"unit": null,
"name": "FLASH Size",
"value": "128kB"
},
{
"unit": "V",
"name": "Supply Voltage Min",
"value": "2"
},
{
"unit": null,
"name": "Case",
"value": "LQFP64"
},
{
"unit": null,
"name": "Core / Family",
"value": "STM32 F1"
},
{
"unit": "V",
"name": "Supply Voltage Max",
"value": "3,6"
},
{
"unit": null,
"name": "Mounting Type",
"value": "SMD"
},
{
"unit": null,
"name": "RAM Size",
"value": "32kB"
},
{
"unit": null,
"name": "EEPROM Size",
"value": "none"
},
{
"unit": "MHz",
"name": "Core Frequency",
"value": "72"
},
{
"unit": null,
"name": "Note",
"value": "-"
},
{
"unit": null,
"name": "Series",
"value": "STM32"
}
],
"product_type": "O",
"pricelist": [
{
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 3.8962,
"amount_with_tax": 4.6754
},
"quantity": 160
}
],
"document": null,
"availability": {
"on_stock_delivery": [],
"in_store": null,
"ordered": 0,
"external": {
"lead_time": "in 5-15 days",
"stock": 540
}
},
"unit": "pcs",
"customer_name": null
},
{
"category": {
"name": "Microcontrollers"
},
"picture": {
"url": "https://cdn.soselectronic.com/productdata/d2/4a/1f4e1622/stm32f107vbt6.jpg"
},
"moq": 1,
"name": "STM32F107VBT6",
"descr": "ARM Cortex-M3 STM32 F1 Microcontroller 32-Bit 72MHz 128kB FLASH LQFP100 ",
"ordernr": "154687",
"url": "http://www.sos-com.test/products/stmicroelectronics/stm32f107vbt6-154687",
"brand": {
"name": "STMICROELECTRONICS"
},
"indivisible_quantity": 1,
"multiple_quantity": 1,
"packing": 0,
"packing_type": null,
"parameters": [
{
"unit": null,
"name": "FLASH Size",
"value": "128kB"
},
{
"unit": "V",
"name": "Supply Voltage Min",
"value": "2"
},
{
"unit": null,
"name": "Case",
"value": "LQFP100"
},
{
"unit": null,
"name": "Core / Family",
"value": "STM32 F1"
},
{
"unit": "V",
"name": "Supply Voltage Max",
"value": "3,6"
},
{
"unit": null,
"name": "Mounting Type",
"value": "SMD"
},
{
"unit": null,
"name": "RAM Size",
"value": "48kB"
},
{
"unit": null,
"name": "EEPROM Size",
"value": "none"
},
{
"unit": "MHz",
"name": "Core Frequency",
"value": "72"
},
{
"unit": null,
"name": "Note",
"value": "-"
},
{
"unit": null,
"name": "Series",
"value": "STM32"
}
],
"product_type": "O",
"pricelist": [],
"document": null,
"availability": {
"on_stock_delivery": [],
"in_store": null,
"ordered": 0,
"external": {
"lead_time": "in 5-15 days",
"stock": 0
}
},
"unit": "pcs",
"customer_name": null
},
{
"category": {
"name": "Development Tools"
},
"picture": {
"url": "https://cdn.soselectronic.com/productdata/e8/28/60d92f0f/easymx-pro-v7-for-stm32-mcucard-with-stm32f107vct6-mikroe-1103.jpg"
},
"moq": 1,
"name": "EasyMx PRO v7 for STM32 MCUcard with STM32F107VCT6 (MIKROE-1103)",
"descr": "Development Board ",
"ordernr": "156559",
"url": "http://www.sos-com.test/products/mikroelektronika/easymx-pro-v7-for-stm32-mcucard-with-stm32f107vct6-mikroe-1103-156559",
"brand": {
"name": "MIKROELEKTRONIKA"
},
"indivisible_quantity": 1,
"multiple_quantity": 1,
"packing": 0,
"packing_type": null,
"parameters": [
{
"unit": null,
"name": "Type",
"value": "Development board"
},
{
"unit": null,
"name": "for",
"value": "Cortex-Mx"
},
{
"unit": null,
"name": "Note",
"value": "n/a"
},
{
"unit": null,
"name": "Series",
"value": "n/a"
}
],
"product_type": "O",
"pricelist": [],
"document": {
"url": "https://cdn.soselectronic.com/productdata/b1/ce/eb14038b/stm32f107vbt6.pdf"
},
"availability": {
"on_stock_delivery": [],
"in_store": null,
"ordered": 0,
"external": {
"lead_time": null,
"stock": 0
}
},
"unit": "pcs",
"customer_name": null
},
{
"category": {
"name": "Development Tools"
},
"picture": {
"url": "https://cdn.soselectronic.com/productdata/e6/ab/1b7a40ae/easymx-pro-v7-for-stm32-mcucard-with-stm32f407vgt6-mikroe-1105.jpg"
},
"moq": 1,
"name": "EasyMx PRO v7 for STM32 MCUcard with STM32F407VGT6 (MIKROE-1105)",
"descr": "Development Board ",
"ordernr": "156561",
"url": "http://www.sos-com.test/products/mikroelektronika/easymx-pro-v7-for-stm32-mcucard-with-stm32f407vgt6-mikroe-1105-156561",
"brand": {
"name": "MIKROELEKTRONIKA"
},
"indivisible_quantity": 1,
"multiple_quantity": 1,
"packing": 0,
"packing_type": null,
"parameters": [
{
"unit": null,
"name": "Type",
"value": "Development board"
},
{
"unit": null,
"name": "for",
"value": "Cortex-Mx"
},
{
"unit": null,
"name": "Note",
"value": "n/a"
},
{
"unit": null,
"name": "Series",
"value": "n/a"
}
],
"product_type": "O",
"pricelist": [],
"document": {
"url": "https://cdn.soselectronic.com/productdata/72/5f/9d858d56/easymx-pro-v7-for-stm32-mcucard-with-stm32f407vgt6-mikroe-1105.pdf"
},
"availability": {
"on_stock_delivery": [],
"in_store": null,
"ordered": 0,
"external": {
"lead_time": null,
"stock": 0
}
},
"unit": "pcs",
"customer_name": null
},
{
"category": {
"name": "Development Tools"
},
"picture": {
"url": "https://cdn.soselectronic.com/productdata/e2/8c/6fd348ff/stm32f0308-disco.jpg"
},
"moq": 1,
"name": "STM32F0308-DISCO",
"descr": "Development Board for STM32F030x ",
"ordernr": "167417",
"url": "http://www.sos-com.test/products/stmicroelectronics/stm32f0308-disco-167417",
"brand": {
"name": "STMICROELECTRONICS"
},
"indivisible_quantity": 1,
"multiple_quantity": 1,
"packing": 0,
"packing_type": null,
"parameters": [
{
"unit": null,
"name": "Type",
"value": "Development board"
},
{
"unit": null,
"name": "for",
"value": "STM32F030x"
},
{
"unit": null,
"name": "Note",
"value": "n/a"
},
{
"unit": null,
"name": "Series",
"value": "n/a"
}
],
"product_type": "O",
"pricelist": [],
"document": {
"url": "https://cdn.soselectronic.com/productdata/b7/e1/b7c2ce7d/stm32f0308-disco.pdf"
},
"availability": {
"on_stock_delivery": [],
"in_store": null,
"ordered": 0,
"external": {
"lead_time": "in 5-15 days",
"stock": 0
}
},
"unit": "pcs",
"customer_name": null
},
{
"category": {
"name": "Microcontrollers"
},
"picture": {
"url": "https://cdn.soselectronic.com/productdata/7c/75/1b1ee0fe/stm32l412cbt6-1.jpg"
},
"moq": 1,
"name": "STM32F302CCT6",
"descr": "ARM Cortex-M3 STM 32 F3 Microcontroller 32-Bit 72MHz 256kB FLASH LQFP48 ",
"ordernr": "173382",
"url": "http://www.sos-com.test/products/stmicroelectronics/stm32f302cct6-173382",
"brand": {
"name": "STMICROELECTRONICS"
},
"indivisible_quantity": 1,
"multiple_quantity": 1,
"packing": 0,
"packing_type": null,
"parameters": [
{
"unit": null,
"name": "FLASH Size",
"value": "256kB"
},
{
"unit": "V",
"name": "Supply Voltage Min",
"value": "2"
},
{
"unit": null,
"name": "Case",
"value": "LQFP48"
},
{
"unit": null,
"name": "Core / Family",
"value": "STM 32 F3"
},
{
"unit": "V",
"name": "Supply Voltage Max",
"value": "3,6"
},
{
"unit": null,
"name": "Mounting Type",
"value": "SMD"
},
{
"unit": null,
"name": "RAM Size",
"value": "32kB"
},
{
"unit": null,
"name": "EEPROM Size",
"value": "none"
},
{
"unit": "MHz",
"name": "Core Frequency",
"value": "72"
},
{
"unit": null,
"name": "Note",
"value": "-"
},
{
"unit": null,
"name": "Series",
"value": "STM32"
}
],
"product_type": "O",
"pricelist": [],
"document": {
"url": "https://cdn.soselectronic.com/productdata/81/3e/032d1885/stm32f302cct6.pdf"
},
"availability": {
"on_stock_delivery": [],
"in_store": null,
"ordered": 0,
"external": {
"lead_time": "in 5-15 days",
"stock": 0
}
},
"unit": "pcs",
"customer_name": null
},
{
"category": {
"name": "Microcontrollers"
},
"picture": {
"url": "https://cdn.soselectronic.com/productdata/5b/68/9ba3beb1/stm32f103t8u7.jpg"
},
"moq": 1,
"name": "STM32F103T8U7",
"descr": "ARM Cortex-M3 STM32 F1 Microcontroller 32-Bit 72MHz 64kB FLASH VFQFPN36 ",
"ordernr": "173819",
"url": "http://www.sos-com.test/products/stmicroelectronics/stm32f103t8u7-173819",
"brand": {
"name": "STMICROELECTRONICS"
},
"indivisible_quantity": 1,
"multiple_quantity": 1,
"packing": 0,
"packing_type": null,
"parameters": [
{
"unit": null,
"name": "FLASH Size",
"value": "64kB"
},
{
"unit": "V",
"name": "Supply Voltage Min",
"value": "2"
},
{
"unit": null,
"name": "Case",
"value": "VFQFPN36"
},
{
"unit": null,
"name": "Core / Family",
"value": "STM32 F1"
},
{
"unit": "V",
"name": "Supply Voltage Max",
"value": "3,6"
},
{
"unit": null,
"name": "Mounting Type",
"value": "SMD"
},
{
"unit": null,
"name": "RAM Size",
"value": "20kB"
},
{
"unit": null,
"name": "EEPROM Size",
"value": "none"
},
{
"unit": "MHz",
"name": "Core Frequency",
"value": "72"
},
{
"unit": null,
"name": "Note",
"value": "-"
},
{
"unit": null,
"name": "Series",
"value": "STM32"
}
],
"product_type": "O",
"pricelist": [],
"document": null,
"availability": {
"on_stock_delivery": [],
"in_store": null,
"ordered": 0,
"external": {
"lead_time": "in 5-15 days",
"stock": 0
}
},
"unit": "pcs",
"customer_name": null
},
{
"category": null,
"picture": {
"url": "https://cdn.soselectronic.com/productdata/73/3b/ec8471cc/xc6slx4-2tqg144i.jpg"
},
"moq": 60,
"name": "STM32F429ZIT6",
"descr": "IC MCU 32-bit 32MHz 180MB Flash LQFP144 ",
"ordernr": "153619",
"url": "http://www.sos-com.test/products/stmicroelectronics/stm32f429zit6-153619",
"brand": {
"name": "STMICROELECTRONICS"
},
"indivisible_quantity": 1,
"multiple_quantity": 1,
"packing": 60,
"packing_type": null,
"parameters": [
{
"unit": null,
"name": "FLASH Size",
"value": "n/a"
},
{
"unit": null,
"name": "Supply Voltage Min",
"value": "n/a"
},
{
"unit": null,
"name": "Case",
"value": "n/a"
},
{
"unit": null,
"name": "Clock Frequency",
"value": "n/a"
},
{
"unit": null,
"name": "EEPROM Size",
"value": "n/a"
},
{
"unit": null,
"name": "RAM Size",
"value": "n/a"
},
{
"unit": null,
"name": "Supply Voltage Max",
"value": "n/a"
},
{
"unit": null,
"name": "AD Converters",
"value": "n/a"
}
],
"product_type": "O",
"pricelist": [
{
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 10.6506,
"amount_with_tax": 12.7807
},
"quantity": 60
}
],
"document": null,
"availability": {
"on_stock_delivery": [],
"in_store": null,
"ordered": 0,
"external": {
"lead_time": "in 5-15 days",
"stock": 348
}
},
"unit": "pcs",
"customer_name": null
},
{
"category": {
"name": "Development Tools"
},
"picture": {
"url": "https://cdn.soselectronic.com/productdata/ca/a5/8a7e3594/stm32f746g-disco-1.jpg"
},
"moq": 1,
"name": "STM32F746G-DISCO",
"descr": "Discovery Kit with STM32F746NG MCU ARM Cortex M7 ",
"ordernr": "218672",
"url": "http://www.sos-com.test/products/stmicroelectronics/stm32f746g-disco-1-218672",
"brand": {
"name": "STMICROELECTRONICS"
},
"indivisible_quantity": 1,
"multiple_quantity": 1,
"packing": 0,
"packing_type": null,
"parameters": [
{
"unit": null,
"name": "Type",
"value": "n/a"
},
{
"unit": null,
"name": "for",
"value": "n/a"
},
{
"unit": null,
"name": "Note",
"value": "n/a"
},
{
"unit": null,
"name": "Series",
"value": "n/a"
}
],
"product_type": "O",
"pricelist": [],
"document": null,
"availability": {
"on_stock_delivery": [],
"in_store": null,
"ordered": 0,
"external": {
"lead_time": "in 5-15 days",
"stock": 0
}
},
"unit": "pcs",
"customer_name": null
}
]
}
HTTP status code 400
INVALID_QUERY
- Query must be specified
INVALID_MIN_QUERY_LENGTH
- Query must have at least minimum length
MAX_PAGINATION_LIMIT_EXCEEDED
- Limit exceeded maximum value
HTTP status code 401
Access token is invalid or missing.
HTTP status code 403
Forbidden.
QUOTA_EXCEEDED
- request count reached maximum allowed value
HTTP status code 404
Object not found.
HTTP status code 409
Conflict.
HTTP status code 500
Body
Media type: application/json
Type: any
Example:
{
"id": "9f426268-4e14-4aa1-96ec-ccf5445aec2d",
"description": "The server encountered an unexpected condition.",
"name": "Internal Server Error",
"code": 500,
"payload": {
"custom_data": "custom"
}
}
Secured by auth_oauth
Headers
- Authorization: required(string)
Odoslanie validného access_token parametra
Example:
Authorization: Bearer d5bc5b2ac2464925a0602d375202fb12eb8d1c1a7c124f78808fb204492530342136ee32ded2431da34e58d881e0af69fee3ebaabc3743e4ad648f7d9a280c4c
HTTP status code 401
Access token is invalid or missing.
Product detail.
get /products/{ordernr}
Product detail.
Custom OAuth 2.0 authentification
URI Parameters
- ordernr: required(string)
Headers
- Authorization: required(string)
Bearer token.
Example:
Bearer d5bc5b2ac2464925a0602d375202fb12eb8d1c1a7c124f78808fb204492530342136ee32ded2431da34e58d881e0af69fee3ebaabc3743e4ad648f7d9a280c4c
- Accept-Language: (string - default: en)
Example:
sk-SK, sk;q=0.9, en;q=0.8, de;q=0.7
HTTP status code 200
Body
Media type: application/json
Type: any
Example:
{
"category": {
"name": "Microcontrollers"
},
"picture": {
"url": "https://cdn.soselectronic.com/productdata/07/0e/57e6c186/at-89-c-2051-24pu.jpg"
},
"moq": 1,
"name": "AT 89 C 4051-24PU",
"descr": "89C Microcontroller 8-bit 24MHz 4KB FLASH DIP20 ",
"ordernr": "3168",
"url": "http://www.sos-com.test/products/microchip/at-89-c-4051-24pu-1-3168",
"brand": {
"name": "MICROCHIP"
},
"indivisible_quantity": 1,
"multiple_quantity": 1,
"packing": 18,
"packing_type": "P-TUBE",
"parameters": [
{
"unit": null,
"name": "FLASH Size",
"value": "4kB"
},
{
"unit": "V",
"name": "Supply Voltage Min",
"value": "4"
},
{
"unit": null,
"name": "Case",
"value": "DIP20"
},
{
"unit": null,
"name": "Core / Family",
"value": "89C"
},
{
"unit": "V",
"name": "Supply Voltage Max",
"value": "6"
},
{
"unit": null,
"name": "Mounting Type",
"value": "THT"
},
{
"unit": null,
"name": "RAM Size",
"value": "128B"
},
{
"unit": null,
"name": "EEPROM Size",
"value": "none"
},
{
"unit": "MHz",
"name": "Core Frequency",
"value": "24"
},
{
"unit": null,
"name": "Note",
"value": "-"
},
{
"unit": null,
"name": "Series",
"value": "AT89C"
}
],
"product_type": "S",
"pricelist": [
{
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 2.11,
"amount_with_tax": 2.532
},
"quantity": 1
},
{
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 2.05,
"amount_with_tax": 2.46
},
"quantity": 2
},
{
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.8,
"amount_with_tax": 2.16
},
"quantity": 18
},
{
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.73,
"amount_with_tax": 2.076
},
"quantity": 36
},
{
"unit_price": {
"taxrate": 20,
"currency": "EUR",
"amount": 1.54,
"amount_with_tax": 1.848
},
"quantity": 144
}
],
"document": {
"url": "https://cdn.soselectronic.com/productdata/64/a8/2ddde755/at-89-c-4051-24pu-1.pdf"
},
"availability": {
"on_stock_delivery": [
{
"date": "2020-12-04",
"quantity": 500
}
],
"in_store": 540,
"ordered": 0,
"external": {
"lead_time": "in 5-15 days",
"stock": 38
}
},
"unit": "pcs",
"customer_name": null
}
HTTP status code 401
Access token is invalid or missing.
HTTP status code 403
Forbidden.
QUOTA_EXCEEDED
- request count reached maximum allowed value
HTTP status code 404
Object not found.
HTTP status code 409
Conflict.
HTTP status code 500
Body
Media type: application/json
Type: any
Example:
{
"id": "9f426268-4e14-4aa1-96ec-ccf5445aec2d",
"description": "The server encountered an unexpected condition.",
"name": "Internal Server Error",
"code": 500,
"payload": {
"custom_data": "custom"
}
}
Secured by auth_oauth
Headers
- Authorization: required(string)
Odoslanie validného access_token parametra
Example:
Authorization: Bearer d5bc5b2ac2464925a0602d375202fb12eb8d1c1a7c124f78808fb204492530342136ee32ded2431da34e58d881e0af69fee3ebaabc3743e4ad648f7d9a280c4c
HTTP status code 401
Access token is invalid or missing.