AhaSend · JSON Structure

Openapi V2 Paginated Smtp Credentials Response Structure

PaginatedSMTPCredentialsResponse schema from AhaSend API

Type: object Properties: 3 Required: 3
EmailTransactional EmailDeveloper ToolsSMTPWebhooks

PaginatedSMTPCredentialsResponse is a JSON Structure definition published by AhaSend, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

object data pagination

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ahasend/refs/heads/main/json-structure/openapi-v2-paginated-smtp-credentials-response-structure.json",
  "name": "PaginatedSMTPCredentialsResponse",
  "description": "PaginatedSMTPCredentialsResponse 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/SMTPCredential"
      },
      "description": "Array of SMTP credentials",
      "example": [
        {
          "object": "smtp_credential",
          "id": "500123",
          "created_at": "2025-03-15T14:30:00Z",
          "updated_at": "2025-03-15T14:30:00Z",
          "name": "Example Name"
        }
      ]
    },
    "pagination": {
      "$ref": "#/components/schemas/PaginationInfo"
    }
  },
  "required": [
    "object",
    "data",
    "pagination"
  ]
}