User - Updates a dynamic dataset for a user
Authorizations
Path parameters
userIdstring · uuidRequired
Enter the ID of an existing user
Query parameters
versionstringOptionalDefault:
The requested API version
1.0
Body
Class for representing dynamic dataset id update.
dynamicDatasetIdstring · uuidOptional
A public property of type nullable string that has both a getter and a setter method, which allows for getting and setting the value of the DynamicDatasetId property.
assetIdstring · uuidOptional
A public property of type object that has both a getter and a setter method, which allows for getting and setting the value of the AssetId property.
Responses
200
Success: Asset updated successfully.
400
Bad Request: The request could not be processed due to invalid syntax or missing/incorrect parameters.
401
Unauthorized: Invalid credentials or missing/invalid authentication token.
404
Not Found: The requested user was not found
500
Internal Server Error: An unexpected error occurred or a server timeout.
put
PUT /users/assets/userId/{userId} HTTP/1.1
Host:
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 108
{
"dynamicDatasetId": "123e4567-e89b-12d3-a456-426614174000",
"assetId": "123e4567-e89b-12d3-a456-426614174000"
}
{
"message": "Success Message",
"statusCode": 200
}
Last updated