Users

Create or Update Worker Document on User

POST https://api.cirro.io/v2/users/:id/worker

Parameters

ParameterTypeNote
documentrequiredobjectInvitation related attributes of a worker

Example

1client = CirroIOV2::Client.new(...)
2params = {
3  "document": {
4    "age": "30",
5    "foo": {
6      "bar": 30
7    }
8  }
9}
10client.User.worker(1, params)
Previous
About Users