TAG LINE
TAG LINE
SMALL TITLE
The PATCH verb allows you to update an object. Just like a put, you only need to supply the fields that will be updated in the payload. However, a patch allows you to update many objects at once.
PATCH operations can be used as a standard API call. Below you will find the child objects that can be updated as part of PATCH operations for the AdministrationUser object.
Standard PATCH objects:
DataFlow PATCH objects:
GET | User/{userId}/LoginHistory |
Retrieve all of the AdministrationUser objects. | |
Retrieve all of the AdministrationUser objects. GET User/{userId}/LoginHistory HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ {} ] } |
GET | User/{userName}/LoginHistory |
Retrieve all of the AdministrationUser objects. | |
Retrieve all of the AdministrationUser objects. GET User/{userName}/LoginHistory HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ {} ] } |