Skip to main content
GET
https://enterprise.spacemedia.uk
/
api
/
v1
/
users
/
{uuid}
/
detail
View User Details
curl --request GET \
  --url https://enterprise.spacemedia.uk/api/v1/users/{uuid}/detail \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "user": {
      "id": "9d7046b2-3ab1-4c9d-9bd8-90bbd22b7df2",
      "uuid": "9d7046b2-3ab1-4c9d-9bd8-90bbd22b7df2",
      "organization_id": "2a8d3e82-4a9d-4e33-9d3b-85bb1a93e8d4",
      "organization_uuid": "2a8d3e82-4a9d-4e33-9d3b-85bb1a93e8d4",
      "name": "Maya Chen",
      "full_name": "Maya Chen",
      "first_name": "Maya",
      "last_name": "Chen",
      "email": "maya.chen@example.test",
      "phone": "+442071838750",
      "language": "en",
      "country": "United Kingdom",
      "address": "22 Demo Lane, London",
      "photo": null,
      "profile_photo": null,
      "verified": true,
      "email_verified_at": "2026-04-10T08:15:00+00:00",
      "last_login_at": "2026-04-18T08:45:00+00:00",
      "created_at": "2026-03-20T09:00:00+00:00",
      "updated_at": "2026-04-18T08:45:00+00:00",
      "is_suspended": false,
      "suspended_at": null,
      "invitation_status": "accepted",
      "is_invited": false,
      "roles": [
        {
          "id": "role-admin-demo",
          "uuid": "role-admin-demo",
          "name": "Admin"
        }
      ]
    },
    "roles": [
      {
        "id": "role-admin-demo",
        "uuid": "role-admin-demo",
        "name": "Admin"
      }
    ],
    "packages": [
      {
        "id": "pkg_pro_2026",
        "uuid": "pkg_pro_2026",
        "name": "Pro Organization",
        "type": "membership",
        "price": 49,
        "currency": "GBP",
        "interval": "monthly",
        "status": "published"
      }
    ],
    "meta": {
      "languages": [
        "English",
        "German"
      ],
      "countries": [
        "United Kingdom",
        "Germany"
      ]
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.spacemedia.uk/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Accept
string

Use application/json for API responses.

Authorization
string

Bearer access token. Use Bearer <YOUR_ACCESS_TOKEN>.

Path Parameters

uuid
string
required

Route identifier for uuid.

Query Parameters

Search term scoped to the authenticated organization.

Response

Success

The response is of type object.