Gets the list of users.
Registration Authority
/- Enterprise Documentation
- DEVELOPER DOCUMENTATION
- UPDATE USER
LIST USERS
CREATE USER
GET USER
UPDATE USER
UANATACA RA API DOCUMENTATION (v1)
https://api.uanataca.com/api/v1/users
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.uanataca.com/api/v1/usersResponse
application/json
{ "count": 7, "next": "https://api.uanataca.com/api/v1/users/?page=2", "previous": null, "results": [ { … }, { … }, { … }, { … }, "..." ] }
https://api.uanataca.com/api/v1/users
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.uanataca.com/api/v1/users \
-H 'Content-Type: application/json' \
-d '{
"registration_authority": "string",
"permission_profile": "string",
"request": "string",
"rao": "string"
}'Response
application/json
{ "pk": 221, "permission_profile": 18, "registration_authority": 1, "request": 255 }
https://api.uanataca.com/api/v1/users/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.uanataca.com/api/v1/users/{id}'Response
application/json
{ "pk": 36, "permission_profile": 18, "registration_authority": 41, "request": 787 }
https://api.uanataca.com/api/v1/users/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://api.uanataca.com/api/v1/users/{id}' \
-H 'Content-Type: application/json' \
-d '{
"registration_authority": "string",
"permission_profile": "string",
"request": "string",
"rao": "string"
}'Response
application/json
{ "pk": 221, "permission_profile": 18, "registration_authority": 1, "request": 150 }