CoreFlow API

A single platform for managing business processes: employee accounting, bookkeeping, inventory control and more in one place.

Artmetal
CURL

# Пример обращения к API v1
curl -X GET "https://example.com/api/v1/users" \
     -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
     -H "Accept: application/json"

# Ответ в JSON формате:
{
  "status": "success",
  "data": [
    {
      "id": 1,
      "name": "John Doe",
      "email": "john.doe@example.com",
      "created_at": "2023-01-01T10:00:00Z",
      "updated_at": "2023-01-01T12:00:00Z"
    },
    {
      "id": 2,
      "name": "Jane Smith",
      "email": "jane.smith@example.com",
      "created_at": "2023-01-02T11:00:00Z",
      "updated_at": "2023-01-02T13:00:00Z"
    }
  ]
}