Skip to content

Latest commit

 

History

History

web-service-bank

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

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;
}