GET /api/user/names/{userIds}
GET
/api/user/names/{userIds}Authorizations
api_key
Type: API Key (header: X-CSRF-Token)
Parameters
Path Parameters
userIds*
Typestring
RequiredResponses
Success.
Authorization
api_key
Variables
Key
Value
userIds*
cURL
curl -X GET \
'http://localhost/api/user/names/{userIds}'
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())