Users

Overview of all users within the organization

GET https://cronly.app/api/users

Headers

NameTypeDescription

Authorization*

String

Bearer: API token

[
    {
        "id": 1,
        "name": "Robin Martijn",
        "email": "robin@cronly.app",
        "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": "ik@robinmartijn.nl",
        "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": "john@cronly.app",
        "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

NameTypeDescription

id*

Integer

The ID of the user you want to view

Headers

NameTypeDescription

Authorization*

String

Bearer: API token

{
    "id": 1,
    "name": "Robin Martijn",
    "email": "robin@cronly.app",
    "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