List Organization Members
Retrieve a paginated list of organization members. Excludes pending invitations (users without associated user accounts). Returns member information including roles, contact details, and user associations.
Authorization
bearerAuth Bearer token authentication for API access.
In: header
Query Parameters
Page number for pagination
11 <= valueNumber of items per page (max 100)
501 <= value <= 100Response Body
application/json
application/json
application/json
curl -X GET "https://api.sophiie.ai/v1/organization/members"{
"members": [
{
"id": 123,
"role": "ADMIN",
"firstName": "John",
"lastName": "Doe",
"position": "Operations Manager",
"avatarImg": "https://example.com/avatar.jpg",
"isDisabled": false,
"responsibility": "Manages daily operations and customer service",
"user": {
"email": "john.doe@acme.com"
}
}
],
"totalPages": 2,
"currentPage": 1,
"totalCount": 8
}{
"success": false,
"message": "Invalid or expired token",
"error": {
"status": 401,
"message": "Invalid or expired token"
}
}{
"success": false,
"message": "Internal server error",
"error": {
"status": 500,
"message": "Internal server error"
}
}Get Organization Details GET
Retrieve detailed information about the organization associated with the API key. Returns organization settings, contact information, and configuration details.
List Organization Products GET
Retrieve all products for the organization, grouped by trade categories. Returns product information including names, descriptions, and pricing organized by their respective categories.