Users
Create or Update Worker Document on User
POST
https://api.cirro.io/v2/users/:id/worker
Parameters
Parameter | Type | Note | |
---|---|---|---|
document | required | object | Invitation related attributes of a worker |
Returns a User object with the updated worker document if the request was successful.
Example
1client = CirroIOV2::Client.new(...)
2params = {
3 "document": {
4 "age": "30",
5 "foo": {
6 "bar": 30
7 }
8 }
9}
10client.User.worker(1, params)