VTEX · Schema

ListUsersResponse

Response body for listing all users.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
items array Array of user objects.
paging object
View JSON Schema on GitHub

JSON Schema

vtex-listusersresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListUsersResponse",
  "title": "ListUsersResponse",
  "description": "Response body for listing all users.",
  "type": "object",
  "properties": {
    "items": {
      "description": "Array of user objects.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UserItems"
      }
    },
    "paging": {
      "$ref": "#/components/schemas/Paging"
    }
  }
}