Users API Documentation

This API endpoint returns a list of users along with their basic details. The response includes each user's ID, name, email, status, and associated branch name. This is useful for displaying user dropdowns or selecting users within the system.

List of Users 🔒

  • Endpoint: {{Base URL}}/dropdown-list

  • Method: GET

  • Description: Fetch the list of users

Response

[

    {

        "id": 203,

        "name": "Aakriti Manandhar",

        "email": "[email protected]",

        "status": 1,

        "branch_name": "Australia Office"

    },

    {

        "id": 90,

        "name": "ABCDEFGHI JKLM",

        "email": "[email protected]",

        "status": 1,

        "branch_name": "Sydney Development Committee Office - Melbourne"

    }

]

Did this answer your question?
😞
😐
😁