API Reference

List users of an organization

Con este endpoint podremos obtener la información de todos los usuarios que pertenecen a nuestra organización.

Prerequisitos

OrganizationId

Necesitaremos conocer nuestro organizacionId. Para obtener dicha información utilizaremos este endpoint :

GET : /api-gateway/core/v1/organizations

Ejemplo Respuesta :

{
	"data": [
		{
			"id": "1",
			"name": "Nombre Organizacion"
		}
	],
	"meta": {
		"correlationId": "5b1c3dc2-ffe9-4a72-8944-a75d385094f1",
		"timestamp": "2025-05-05T14:26:10Z"
	}
}

Resumen

  • Verbo HTTPS : GET
  • Endpoint : /api-gateway/core/v1/organizations/{organizationId}/users
  • Parámetros en el path : organizationId
  • Response
{
  "data": [
    {
      "id": "37134",
      "email": "[email protected]",
      "name": "John",
      "lastName": "Doe",
      "twoFactorAuthRequired": true,
      "position": null,
      "phone": null,
      "language": "Francés",
      "timezone": "Europa/London"
    },
    {
      "id": "30210",
      "email": "[email protected]",
      "name": "Mary",
      "lastName": "Blood",
      "twoFactorAuthRequired": true,
      "position": null,
      "phone": null,
      "language": "Francés",
      "timezone": "Europa/London"
    }
  ],
  "meta": {
    "correlationId": "f69da1e4-1fe3-44e7-83ad-036ce3419337",
    "timestamp": "2025-05-05T16:02:18Z"
  }
}
Language
URL
Click Try It! to start a request and see the response here!