31 lines
657 B
YAML
31 lines
657 B
YAML
id: api-mailgun
|
|
|
|
info:
|
|
name: Mailgun API Test
|
|
author: zzeitlin
|
|
severity: info
|
|
description: Email Service
|
|
reference:
|
|
- https://documentation.mailgun.com/en/latest/api-intro.html
|
|
- https://github.com/daffainfo/all-about-apikey/tree/main/mailgun
|
|
tags: token-spray,mailgun
|
|
metadata:
|
|
max-request: 1
|
|
|
|
self-contained: true
|
|
http:
|
|
- method: GET
|
|
path:
|
|
- "https://api.mailgun.net/v3/domains"
|
|
headers:
|
|
Authorization: Basic {{base64('api:' + token)}}
|
|
|
|
matchers:
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- '"total_count":'
|
|
- '"items":'
|
|
- '"created_at":'
|
|
condition: and
|