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

Name
Type
Description

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

Name
Type
Description

Content-type

string

application/json

Authorization

string

"your id_token"

Method to retrieve seller informations

GET https://api.transiteo.io/v1/customer/sellers/:sellerId}

This endpoint allows you to get customer seller informations.

Headers

Name
Type
Description

Content-type

string

application/json

Authorization

string

"your id_token"

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

Name
Type
Description

Content-type

string

application/json

Authorization

string

"your id_token"

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

Name
Type
Description

Content-type

string

application/json

Authorization

string

"your id_token"

Last updated