Cronly
  • 🆘FAQ
  • Setup guides
    • 💵Subscription
    • 👤Your account
    • 🏢Employees
    • 📁Projects
    • 🔥Triggers
    • 🔔Events
    • 🪝Webhooks
  • Service guides
    • ▶️Managed jobs
    • ⏱️Job monitors
    • 🔐SSL certificates
  • API
    • How to use the API
    • Companies
    • Notifications
    • Job monitors
    • Projects
    • SSL certificates
    • Users
    • Servers
    • Back-ups
  • SDKs
    • PHP
    • JavaScript
  • Integrations
    • Wordpress WP-Cron
Powered by GitBook
On this page
  • Overview of all users within the organization
  • Details of a specific user
  1. API

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": "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

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": "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
}
{
    "error": "User not found"
}
PreviousSSL certificatesNextServers

Last updated 1 year ago