Skip to content

Latest commit

 

History

History
79 lines (63 loc) · 797 Bytes

README.md

File metadata and controls

79 lines (63 loc) · 797 Bytes

Web Service Bank

Description

REST API Documentation

GET /api/v2/bank/getWalletList

Request

{
    uuid: string;
}

Response

{
    uuid: string;
}

POST /api/v2/bank/getBalance

Request

{
    uuid: string;
    currency: string;
}

Response

{
    uuid: string;
    currency: string;
}

POST /api/v2/bank/addBalance

Request

{
    uuid: string;
    currency: string;
    value: number;
}

Response

{
    uuid: string;
    currency: string;
    value: number;
}

POST /api/v2/bank/removeBalance

Request

    uuid: string;
    currency: string;
    value: number;

Response

{
    uuid: string;
    currency: string;
    value: number;
}