Users
Overview of all users within the organization
GET
https://cronly.app/api/users
Headers
Name
Type
Description
Authorization*
String
Bearer: API token
[
{
"id": 1,
"name": "Robin Martijn",
"email": "[email protected]",
"email_verified_at": null,
"deleted_at": null,
"created_at": "2022-05-30T13:14:13.000000Z",
"updated_at": "2022-05-30T13:14:13.000000Z",
"company_id": 1
},
{
"id": 2,
"name": "Robin Martijn (backup)",
"email": "[email protected]",
"email_verified_at": null,
"deleted_at": null,
"created_at": "2022-05-30T13:16:51.000000Z",
"updated_at": "2022-05-30T13:16:51.000000Z",
"company_id": 1
},
{
"id": 3,
"name": "John Doe",
"email": "[email protected]",
"email_verified_at": null,
"deleted_at": null,
"created_at": "2022-05-30T13:23:10.000000Z",
"updated_at": "2022-05-30T13:23:35.000000Z",
"company_id": 1
}
]
Details of a specific user
GET
https://cronly.app/api/users/{id}
Query Parameters
Name
Type
Description
id*
Integer
The ID of the user you want to view
Headers
Name
Type
Description
Authorization*
String
Bearer: API token
{
"id": 1,
"name": "Robin Martijn",
"email": "[email protected]",
"email_verified_at": null,
"deleted_at": null,
"created_at": "2022-05-30T13:14:13.000000Z",
"updated_at": "2022-05-30T13:14:13.000000Z",
"company_id": 1
}
Last updated