Skip to content

Latest commit

 

History

History
104 lines (86 loc) · 1.08 KB

README.md

File metadata and controls

104 lines (86 loc) · 1.08 KB

Web Service Sell

Description

REST API Documentation

GET /api/v2/sell/getArticleList

Request

{
    token: string;
    currency: string;
}

Response

{
    token: string;
    currency: string;
}

POST /api/v2/sell/getArticle

Request

{
    token: string;
    uuid: string;
    currency: string;
}

Response

{
    token: string;
    uuid: string;
    currency: string;
}

POST /api/v2/sell/postArticle

Request

{
    token: string;
    uuid: string;
    price: number;
    currency: string;
}

Response

{
    token: string;
    uuid: string;
    price: number;
    currency: string;
}

GET /api/v2/sell/getBasket

Request

{
    token: string;
    currency: string;
}

Response

{
    token: string;
    currency: string;
}

POST /api/v2/sell/postBasket

Request

{
    token: string;
    bikeUuid: string;
    currency: string;
}

Response

{
    token: string;
    bikeUuid: string;
    currency: string;
}