MailLeader
  1. Accounts
MailLeader
  • Inicio
  • Comece Aqui
  • Comece a receber e-mails
  • Api
    • Authentication
      • Api Keys
        • Create ApiKey
        • Search ApiKeys
        • Remove ApiKey
    • User
      • Get authenticated user
    • Domain
      • Accounts
        • Create Account
          POST
        • List Accounts
          GET
        • Delete Account
          DELETE
      • Create Domain
        POST
      • Domains
        GET
      • Delete Domain
        DELETE
    • Mail
      • Send Mail
    • Billing
      • Licenses
        • Search License
        • Get License
      • Invoice
        • Get Invoice Details
        • Search Invoices
        • Get Invoice
      • Expenses
        • List Expenses
      • Profile
      • Domain Usage
      • Domain Usage Operational
      • Usage
      • Current License
    • Webhook
      • Create Webhook
      • Update Webhook
      • Search Webhook
  1. Accounts

List Accounts

GET
https://mail.devtcloud.com/api/v1/domain/{domainId}/account/search

Requisição

Authorization
Adicionar parâmetro em header
x-api-key
Exemplo:
x-api-key: ********************
Parâmetros de Caminho

Respostas

🟢200Sucesso
application/json
Body

🟠400Dominio não encontrado
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://mail.devtcloud.com/api/v1/domain//account/search' \
--header 'x-api-key: <api-key>'
Response Response Example
200 - Sucesso
{
  "total": 3,
  "page": 1,
  "maxPage": 1,
  "data": [
    {
      "id": "100000000000000700",
      "account": "contato@exemplo.com",
      "relay": false,
      "domainId": "100000000000000800",
      "createdAt": "2025-01-01T10:00:00.000Z",
      "updatedAt": "2025-01-01T10:00:00.000Z"
    },
    {
      "id": "100000000000000701",
      "account": "no-reply@exemplo.com",
      "relay": true,
      "domainId": "100000000000000800",
      "createdAt": "2025-01-02T11:30:00.000Z",
      "updatedAt": "2025-01-02T11:30:00.000Z"
    },
    {
      "id": "100000000000000702",
      "account": "suporte@exemplo.com",
      "relay": true,
      "domainId": "100000000000000800",
      "createdAt": "2025-01-03T08:45:00.000Z",
      "updatedAt": "2025-01-03T08:45:00.000Z"
    }
  ]
}
Modificado em 2025-10-15 22:07:34
Página anterior
Create Account
Próxima página
Delete Account
Built with