### Retrieve All Users from Reqres.in API Source: https://github.com/hanson-cheng/n8n-workflows/blob/main/automation/602-manage-users-automatically-in-reqres-in/README.md This operation sends a GET request to the Reqres.in API to fetch a list of all available users. It's typically used to populate a user directory or verify existing users. ```APIDOC GET /api/users Response Body Example: { "page": 1, "per_page": 6, "total": 12, "total_pages": 2, "data": [ { "id": 1, "email": "george.bluth@reqres.in", "first_name": "George", "last_name": "Bluth", "avatar": "https://reqres.in/img/faces/1-image.jpg" } ] } ``` -------------------------------- ### Create New User in Reqres.in API Source: https://github.com/hanson-cheng/n8n-workflows/blob/main/automation/602-manage-users-automatically-in-reqres-in/README.md This operation sends a POST request to the Reqres.in API to add a new user. It requires a name and job title for the new user. ```APIDOC POST /api/users Request Body: { "name": "string", "job": "string" } Response Body Example: { "name": "morpheus", "job": "leader", "id": "400", "createdAt": "2024-01-01T12:00:00.000Z" } ``` -------------------------------- ### Update Existing User's Job Title in Reqres.in API Source: https://github.com/hanson-cheng/n8n-workflows/blob/main/automation/602-manage-users-automatically-in-reqres-in/README.md This operation sends a PATCH request to the Reqres.in API to modify the job title of an existing user. It requires the user's ID and the new job title. ```APIDOC PATCH /api/users/{id} Request Body: { "job": "string" } Response Body Example: { "name": "morpheus", "job": "zion resident", "updatedAt": "2024-01-01T12:00:00.000Z" } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.