Skip to content

GET /api/user/names/{userIds}

GET
/api/user/names/{userIds}

Authorizations

Parameters

Path Parameters

userIds*
Typestring
Required

Responses

Success.

Samples

cURL
curl -X GET http://localhost/api/user/names/{userIds}
JavaScript
fetch("http://localhost/api/user/names/{userIds}")
  .then(response => response.json())
  .then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/user/names/{userIds}");
Python
import requests
response = requests.get("http://localhost/api/user/names/{userIds}")
print(response.json())