Sellers (SIM)
Sellers Information Manager
Method to add customer sellers
POST
https://api.transiteo.io/v1/customer/sellers
This endpoint allows you to add customer sellers, up to 100 per request
Headers
Content-type
string
application/json
Authorization
string
"your id_token"
Json Request Format
[
{
"mail": "a@a.com",
"id": "001",
"name": "Seller 001",
"manager_name": "Jean Bretthon",
"phone": "+33601020304",
"vat_number": "1234",
"eori_number": "5678",
"country": "FR",
"street": "3 Place de l'église",
"city": "PARIS",
"postal_code": "12345",
"annual_revenue": {},
"syderep": {
"AAA": "CheckOK",
"BBB": "CheckOK"
},
"ids": {
"products": [],
"categories": [],
"orders": [],
"invoices": [],
}
},
{
"mail": "a@a.com",
"id": "002",
"name": "Seller 002",
"manager_name": "Juliette Caranet",
"phone": "+33601020304",
"vat_number": "1234",
"eori_number": "5678",
"country": "FR",
"street": "3 Place de l'église",
"city": "PARIS",
"postal_code": "12345",
"annual_revenue": {},
"syderep": {
"AAA": "CheckOK",
"BBB": "CheckOK"
},
"ids": {
"products": [],
"categories": [],
"orders": [],
"invoices": [],
}
}
]
Method to update a customer seller
PUT
https://api.transiteo.io/v1/customer/sellers/:sellerId
This endpoint allows you to update customer seller
Headers
Content-type
string
application/json
Authorization
string
"your id_token"
{
"mail": "a@a.com",
"id": "001",
"name": "Seller 001",
"manager_name": "Jean Bretthon",
"phone": "+33601020304",
"vat_number": "12340000",
"eori_number": "56780000",
"country": "FR",
"street": "7 Place de l'église",
"city": "PARIS",
"postal_code": "12345",
"annual_revenue": {},
"syderep": {
"AAA": "CheckOK",
"NEW_SYDEREP": "NEW_OK!",
"BBB": "CheckOK"
},
"ids": {
"orders": [],
"categories": [],
"invoices": [],
"products": []
}
}
Method to retrieve seller informations
GET
https://api.transiteo.io/v1/customer/sellers/:sellerId}
This endpoint allows you to get customer seller informations.
Headers
Content-type
string
application/json
Authorization
string
"your id_token"
{
"mail": "a@a.com",
"id": "001",
"name": "Seller 001",
"manager_name": "Jean Bretthon",
"phone": "+33601020304",
"vat_number": "1234",
"eori_number": "5678",
"country": "FR",
"street": "3 Place de l'église",
"city": "PARIS",
"postal_code": "12345",
"annual_revenue": {
"2025": {
"FR": { "amount": 12390.98, "currency": "EUR" },
"US": { "amount": 78098.57, "currency": "USD" }
}
},
"syderep": {
"AAA": "CheckOK",
"BBB": "CheckOK"
},
"ids": {
"products": ["SKU_A"],
"categories": ["CAT_1", "CAT_2"],
"orders": ["ORDER_00002"],
"invoices": ["INV0000001"],
}
}
Method to retrieve all customer sellers
GET
https://api.transiteo.io/v1/customer/sellers
This endpoint allows you to get all customer sellers, paginated, pages of 500 items
Headers
Content-type
string
application/json
Authorization
string
"your id_token"
{
"data": [
{
"mail": "a@a.com",
"id": "001",
"name": "Seller 001",
"manager_name": "Jean Bretthon",
"phone": "+33601020304",
"vat_number": "1234",
"eori_number": "5678",
"country": "FR",
"street": "3 Place de l'église",
"city": "PARIS",
"postal_code": "12345",
"annual_revenue": {
"2025": {
"FR": { "amount": 12390.98, "currency": "EUR" },
"US": { "amount": 78098.57, "currency": "USD" }
}
},
"syderep": {
"AAA": "CheckOK",
"BBB": "CheckOK"
},
"ids": {
"products": ["SKU_A"],
"categories": ["CAT_1", "CAT_2"],
"orders": ["ORDER_00002"],
"invoices": ["INV0000001"],
}
},
{
"mail": "a@a.com",
"id": "002",
"name": "Seller 002",
"manager_name": "Juliette Caranet",
"phone": "+33601020304",
"vat_number": "1234",
"eori_number": "5678",
"country": "FR",
"street": "3 Place de l'église",
"city": "PARIS",
"postal_code": "12345",
"annual_revenue": {
"2025": {
"FR": { "amount": 12390.98, "currency": "EUR" },
"US": { "amount": 78098.57, "currency": "USD" }
}
},
"syderep": {
"AAA": "CheckOK",
"BBB": "CheckOK"
},
"ids": {
"products": [],
"categories": [],
"orders": [],
"invoices": [],
}
},
...
],
"nextIndex": "500"
}
Method to delete a customer seller
DELETE
https://api.transiteo.io/v1/customer/sellers/:sellerIdu}
This endpoint allows you to delete a customer seller
Headers
Content-type
string
application/json
Authorization
string
"your id_token"
{
"mail": "a@a.com",
"id": "001",
"name": "Seller 001",
"manager_name": "Jean Bretthon",
"phone": "+33601020304",
"vat_number": "12340000",
"eori_number": "56780000",
"country": "FR",
"street": "7 Place de l'église",
"city": "PARIS",
"postal_code": "12345",
"annual_revenue": {},
"syderep": {
"AAA": "CheckOK",
"NEW_SYDEREP": "NEW_OK!",
"BBB": "CheckOK"
},
"ids": {
"orders": [],
"categories": [],
"invoices": [],
"products": []
}
}
Last updated