Form Key

GET ‎https://<domain>/<api prefix>/<version>/get/form-key/

This API endpoint will return a key that is used to post some multi-wallet processing endpoints.

Headers

Name
Type
Description

apikey*

string

Apikey

Authorization*

string

Bearer access key

HTTP/1.1 200 OK
Content-Type: application/json
​
Body:
{
    "status_code": 200,
    "errors": {},
    "data": "<key>"
}

Sample Code

Node

var request = require('request');
var options = {
  'method': 'GET',
  'url': 'https://<domain>/<api prefix>/<version>/get/form-key/',
  'headers': {
    'apikey': '<apikey>',
    'Authorization': 'Bearer <access token>',
  },
  formData: {}
};
request(options, function (error, response) {
  if (error) throw new Error(error);
  console.log(response.body);
});

PHP

Last updated

Was this helpful?