Amara Docs
  • 👋Welcome to Amara Hosting
  • Developers
    • 🔌Plugins
      • Page
      • Page 1
    • ⚙️Amara API
      • Users
      • Dashboard
Powered by GitBook
On this page
  1. Developers
  2. Amara API

Users

List all users from one/all server(s).

GET /users/list

Path Parameters

Name
Type
Description

token*

String

Your token!

limit

Int

Add a limit.

server

String

The server you want to list users from.

(if not set it will List all users from all servers)

{
  "object": "list",
  "url": "/v1/customers",
  "has_more": false,
  "data": [
    {
      "id": "cus_9s6XKzkNRiz8i3",
      "object": "customer",
      "address": null,
      "balance": 0,
      "created": 1483565364,
      "currency": "usd",
      "default_source": "card_1NZex82eZvKYlo2CZR21ocY1",
      "delinquent": false,
      "description": "Casetabs Organization",
      "discount": null,
      "email": "test@test.com",
      "invoice_prefix": "28278FC",
      "invoice_settings": {
        "custom_fields": null,
        "default_payment_method": "pm_1O4iJ12eZvKYlo2CZXSZb9Z2",
        "footer": null,
        "rendering_options": null
      },
      "livemode": false,
      "metadata": {
        "order_id": "6735"
      },
      "name": null,
      "next_invoice_sequence": 385,
      "phone": null,
      "preferred_locales": [
        "de-DE"
      ],
      "shipping": null,
      "tax_exempt": "none",
      "test_clock": null
    },
    {...},
    {...}
  ]
}
PreviousAmara APINextDashboard

Last updated 1 year ago

⚙️