Fez Business API
  • Introduction
  • API ENDPOINTS
    • Auth
      • Authenticate
      • Logout
      • Change Password
    • Orders
      • Create
      • Get
      • Update
      • Delete
      • Search
      • Search via Waybill Number
      • Status With Date Range
      • Fetch Delivery Cost
      • Track
      • Delivery Time Estimate
    • International Orders
      • Create Import Order
      • Import Items Categories
      • Import Locations
      • Import Delivery Cost
      • Export Locations
      • Create Export Order
      • Export Delivery Cost
    • Users
      • Create
      • Get All
      • Delete
    • Locker
      • Get All
      • Check Availability
    • Webhook
      • Register Order Webhook
      • Order Webhook Request
Powered by GitBook
On this page
  1. API ENDPOINTS
  2. Users

Get All

This endpoint returns all users created for your organization.

All users.

All users.

GET /users

Headers

Name
Type
Description

secret-key*

user secret key

Authorization*

Token

{
    "status": "Success",
    "description": "Users fetch Successfully",
    "users": [
        {
            "fullname": "Admin",
            "email": "intoajohnson@gmail.com",
            "created_at": "2024-01-04T03:14:25.000000Z",
            "id": 69,
            "user_id": "G-DA5b-2Ce5"
        },
        {
            "fullname": "Nnena Precious",
            "email": "nnkea2@gmail.com",
            "created_at": "2024-04-01T10:40:05.000000Z",
            "id": 71,
            "user_id": "G-K5YK-tk4jr"
        }
    ]
}
{
    "status": "Error",
    "description": "Organization Secret Key is Required"
}
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://apisandbox.fezdelivery.co/v1/users',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'GET',
  CURLOPT_HTTPHEADER => array(
    'secret-key: {{Your Secret Key}}'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
PreviousCreateNextDelete

Last updated 1 year ago