/asset-management/v1/network-usersThis endpoint retrieves a list of all Network Users
limitstringThe maximum number of network users to return (default 20, maximum 100)
startingAfterstringThe ID of the last network user in the previous page of results. Results will start after this network user
A list of network users
{
"data": {
"hasMore": true,
"items": [
{
"id": "string",
"email": "string",
"network": {
"id": "string"
},
"firstName": "string",
"lastName": "string",
"isArchived": true,
"phoneNumber": "string",
"createdAt": "2023-06-07T17:32:28Z",
"updatedAt": "2023-06-07T17:32:28Z"
}
]
}
}/asset-management/v1/network-usersThis endpoint creates a new network user (network operator/admin).
This action is not enabled by default. You must request additional permissions to perform this action.
emailstringrequired
The email of the network user
firstNamestringrequired
The first name of the network user
lastNamestringrequired
The last name of the network user
networkstringrequired
The ID of the network the user belongs to
phoneNumberstring or nullOptional phone number in "+11231231234" format
{
"email": "string",
"firstName": "string",
"lastName": "string",
"network": "string",
"phoneNumber": "string"
}Success
{
"data": {
"id": "string",
"email": "string",
"network": {
"id": "string"
},
"firstName": "string",
"lastName": "string",
"isArchived": true,
"phoneNumber": "string",
"createdAt": "2023-06-07T17:32:28Z",
"updatedAt": "2023-06-07T17:32:28Z"
}
}/asset-management/v1/network-users/{networkUserId}Retrieves a network user by ID if it exists and is associated with the current network.
networkUserIdstringrequired
The ID of the network user to retrieve
Success
{
"data": {
"id": "string",
"email": "string",
"network": {
"id": "string"
},
"firstName": "string",
"lastName": "string",
"isArchived": true,
"phoneNumber": "string",
"createdAt": "2023-06-07T17:32:28Z",
"updatedAt": "2023-06-07T17:32:28Z"
}
}/asset-management/v1/network-users/{networkUserId}Deletes (archives) a network user by ID if it exists and is associated with the current
network. The row is retained with isArchived=true, its PII fields are nullified, and the
user's PII is crypto-shredded in the PII vault (GDPR Art. 17). Archived users are hidden
from GET and list.
This action is not enabled by default. You must request additional permissions to perform this action.
networkUserIdstringrequired
The ID of the network user to delete
Network user deleted successfully.
Empty response
/asset-management/v1/network-users/{networkUserId}This endpoint updates an existing network user by its ID. Only firstName,
lastName, and phoneNumber may be updated; email and network are immutable.
This action is not enabled by default. You must request additional permissions to perform this action.
firstNamestringThe first name of the network user
lastNamestringThe last name of the network user
phoneNumberstring or nullOptional phone number in "+11231231234" format
{
"firstName": "string",
"lastName": "string",
"phoneNumber": "string"
}Success. Returns the updated network user.
{
"data": {
"id": "string",
"email": "string",
"network": {
"id": "string"
},
"firstName": "string",
"lastName": "string",
"isArchived": true,
"phoneNumber": "string",
"createdAt": "2023-06-07T17:32:28Z",
"updatedAt": "2023-06-07T17:32:28Z"
}
}Was this page helpful?