Withdraws

List your withdraws as paginated collection.

get

List your withdraws as paginated collection.

Query parameters
currencystring · enumOptional

Currency code.

Possible values:
limitinteger · int32 · min: 1 · max: 100Optional

Number of withdraws per page (defaults to 100, maximum is 100).

statestringOptional

Filter withdrawals by states.

ridstringOptional

Wallet address on the Blockchain.

time_frominteger · int32Optional

An integer represents the seconds elapsed since Unix epoch.

time_tointeger · int32Optional

An integer represents the seconds elapsed since Unix epoch.

pageinteger · int32Optional

Page number (defaults to 1).

Responses
200
List your withdraws as paginated collection.
application/json
get
GET /api/v2/live/account/withdraws HTTP/1.1
Host: www.mameex.com
Accept: */*
200

List your withdraws as paginated collection.

[
  {
    "id": 1,
    "currency": "text",
    "type": "text",
    "amount": "text",
    "fee": 1,
    "blockchain_txid": "text",
    "rid": "text",
    "state": "text",
    "confirmations": 1,
    "note": "text",
    "transfer_type": "text",
    "created_at": "text",
    "updated_at": "text",
    "done_at": "text"
  }
]
post

Creates new withdrawal to active beneficiary.

Body
otpintegerRequired

OTP to perform action

beneficiary_idintegerRequired

ID of Active Beneficiary belonging to user.

currencystringRequired

The currency code.

amountnumberRequired

The amount to withdraw.

notestringOptional

Optional user metadata to be applied to the transaction. Used to tag transactions with memorable comments.

Responses
201
Creates new withdrawal to active beneficiary.
post
POST /api/v2/live/account/withdraws HTTP/1.1
Host: www.mameex.com
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 71

"otp=1&beneficiary_id=1&currency='text'&amount=1&note='text'"
201

Creates new withdrawal to active beneficiary.

No content

Last updated