WL / BL Wallets

targets

Get all targets (wallets lists)

post
Body
objectOptional
Responses
200
OK
application/json
post
POST /api/v1/quick-task/wlbl/targets HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 2

{}
{
  "targets": [
    "text"
  ]
}

wlbl

Get all wallets for target (list)

post
Body
targetstringOptional
Responses
200
OK
application/json
post
POST /api/v1/quick-task/wlbl HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 17

{
  "target": "text"
}
{
  "wallets": [
    {
      "address": "text",
      "source": "text",
      "note": "text",
      "isWhitelisted": true,
      "target": "text"
    }
  ]
}

add

Add wallet to specific list If target does not exists it will be automatically created

post
Body
addressstringOptional
sourcestringOptional
notestringOptional
isWhitelistedbooleanOptional
targetstringOptional
Responses
200
OK
application/json
Responseobject
post
POST /api/v1/quick-task/wlbl/add HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 85

{
  "address": "text",
  "source": "text",
  "note": "text",
  "isWhitelisted": true,
  "target": "text"
}
{}

remove

Remove wallets from list

post
Body
addressstringOptional
targetstringOptional
Responses
200
OK
application/json
Responseobject
post
POST /api/v1/quick-task/wlbl/remove HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 34

{
  "address": "text",
  "target": "text"
}
{}

drop

Remove all wallets from the list, list will be deleted too

post
Body
targetstringOptional
Responses
200
OK
application/json
Responseobject
post
POST /api/v1/quick-task/wlbl/drop HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 17

{
  "target": "text"
}
{}

Last updated