Skip to content

Repost Transaction API

David Tavarez edited this page Jun 20, 2020 · 3 revisions

Repost Transaction.

URL : /v2

Method : repost_tx

Params

  • session_token(string): The user's session token in base64.
  • tx_id(string): Transaction ID.
  • method(STEM|JOIN): Transaction Repost method.

Request

{
  "jsonrpc": "2.0",
  "method": "repost_tx",
  "id": 1,
  "params": {
    "session_token": "mFHve+/CFsPuQf1+Anp24+R1rLZCVBIyKF+fJEuxAappgT2WKMfpOiNwvRk=",
    "tx_id": "1234",
    "method": "STEM"
  }
}

Reponse

{
  "id": 1,
  "jsonrpc": "2.0",
  "result": {
    "status": "SUCCESS"
  }
}