AhaSend · Schema

AccountMembersResponse

AccountMembersResponse schema from AhaSend API

EmailTransactional EmailDeveloper ToolsSMTPWebhooks

Properties

Name Type Description
object string Object type identifier
data array Array of account members
View JSON Schema on GitHub

JSON Schema

openapi-v2-account-members-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ahasend/refs/heads/main/json-schema/openapi-v2-account-members-response-schema.json",
  "title": "AccountMembersResponse",
  "description": "AccountMembersResponse schema from AhaSend API",
  "type": "object",
  "properties": {
    "object": {
      "type": "string",
      "enum": [
        "list"
      ],
      "description": "Object type identifier",
      "example": "list"
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UserAccount"
      },
      "description": "Array of account members",
      "example": [
        {
          "id": "500123",
          "created_at": "2025-03-15T14:30:00Z",
          "updated_at": "2025-03-15T14:30:00Z",
          "user_id": "500123",
          "account_id": "500123"
        }
      ]
    }
  },
  "required": [
    "object",
    "data"
  ]
}