NATS4 REST API Get Member Encryped Username
From TMM Wiki
Jump to navigationJump to searchFor NATS 4.1.19.1+
GET /member/encryptusername
Description
- The member/encryptusername API resource is a feature in NATS4 that allows you to retrieve the encrypted version of a plaintext member username
Resource URL
- http://domain/api/member/encryptusername
- Replace domain with the nats domain
- GET
Response Format
- JSON
- HTTP headers
Parameters
- username: The Plaintext username to encrypt.
- type: string
- required
Example Request
GET
http://domain/api/member/encryptusername?username=testuser
- Response:
{ "result":"member_username|||%96R%F3Z%C3%CA6_" }
Example Code
PHP
<?php $curl = curl_init(); $data = array( 'username' => 'testuser' ); $data_string = http_build_query($data); $url = 'http://domain/api/member/encryptusername?'.$data_string; $headers = array( 'api-key: 44b5498dbcb481a0d00b404c0169af62', 'api-username: tmm1phrvezsbu' ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_URL, $url); $resp = curl_exec($curl); //dumps an associative array representation of the json var_dump(json_decode($resp, true)); // Close request to clear up some resources curl_close($curl); ?>
Python
- This example requires pip and the request library which can be installed via pip by: 'pip install requests'
import requests url = 'http://domain/api/member/encryptusername' params = { 'username' => 'testuser' } headers = { 'api-key': '44b5498dbcb481a0d00b404c0169af62', 'api-username': 'tmm1phrvezsbu' } res = requests.get(url, params=params, headers=headers) print res.json()
node.js
- This example requires npm and the request module which can be installed via npm by: 'npm install request'
var request = require('request'); var options = { url: 'http://domain/api/member/encryptusername', method: 'GET', qs: { 'username' => 'testuser' }, json: true, headers: { 'api-key': '44b5498dbcb481a0d00b404c0169af62', 'api-username': 'tmm1phrvezsbu' } }; function callback(error, response, body) { if (!error && response.statusCode == 200) { console.log(body); } else{ console.log(body); } } request(options, callback);
Curl
curl -X GET 'http://domain/api/member/encryptusername?username=testuser' -H "api-key: 44b5498dbcb481a0d00b404c0169af62" -H "api-username: tmm1phrvezsbu"