SendGrid · Arazzo Workflow

SendGrid Create Verified Sender

Version 1.0.0

Create a Single Sender identity and check whether sender verification has completed.

1 workflow 1 source API 1 provider
View Spec View on GitHub EmailEmail APIMarketing EmailSMTPT1Transactional EmailEmail MarketingDeliverabilityMarketingArazzoWorkflows

Provider

sendgrid

Workflows

create-verified-sender
Create a Single Sender identity and report verification status.
Creates a verified sender request and checks the account's completed verification steps, branching on whether sender verification is done.
2 steps inputs: address, apiKey, city, country, fromEmail, fromName, nickname, replyTo outputs: senderId, senderVerified
1
createVerifiedSender
CreateVerifiedSender
Create the verified sender request, which sends a confirmation email to the from_email address.
2
checkSteps
ListVerifiedSenderStepsCompleted
Check the account's completed verification steps and branch on whether sender verification has finished.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: SendGrid Create Verified Sender
  summary: Create a Single Sender identity and check whether sender verification has completed.
  description: >-
    Begins Single Sender Verification, which is required before an identity can
    send mail. The workflow creates a verified sender request, which triggers a
    confirmation email to the from_email address, and then checks the account's
    completed verification steps, branching on whether sender verification has
    finished. The create returns 201 and the steps check returns 200. Because
    final verification requires the recipient to click the emailed link, the
    flow surfaces the current state rather than blocking on it. Each step inlines
    its request and bearer token so the flow is self-describing.
  version: 1.0.0
sourceDescriptions:
- name: verifiedSendersApi
  url: ../openapi/tsg_verified_senders_v3.yaml
  type: openapi
workflows:
- workflowId: create-verified-sender
  summary: Create a Single Sender identity and report verification status.
  description: >-
    Creates a verified sender request and checks the account's completed
    verification steps, branching on whether sender verification is done.
  inputs:
    type: object
    required:
    - apiKey
    - nickname
    - fromEmail
    - fromName
    - replyTo
    - address
    - city
    - country
    properties:
      apiKey:
        type: string
        description: SendGrid API key sent as a bearer token.
      nickname:
        type: string
        description: A nickname for the sender identity.
      fromEmail:
        type: string
        description: The from email address to verify.
      fromName:
        type: string
        description: The from name shown on sent mail.
      replyTo:
        type: string
        description: The reply-to email address.
      address:
        type: string
        description: The physical mailing address of the sender.
      city:
        type: string
        description: The city of the sender.
      country:
        type: string
        description: The country of the sender.
  steps:
  - stepId: createVerifiedSender
    description: >-
      Create the verified sender request, which sends a confirmation email to
      the from_email address.
    operationId: CreateVerifiedSender
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    requestBody:
      contentType: application/json
      payload:
        nickname: $inputs.nickname
        from_email: $inputs.fromEmail
        from_name: $inputs.fromName
        reply_to: $inputs.replyTo
        address: $inputs.address
        city: $inputs.city
        country: $inputs.country
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      senderId: $response.body#/id
      verified: $response.body#/verified
  - stepId: checkSteps
    description: >-
      Check the account's completed verification steps and branch on whether
      sender verification has finished.
    operationId: ListVerifiedSenderStepsCompleted
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      senderVerified: $response.body#/results/sender_verified
    onSuccess:
    - name: senderVerified
      type: end
      criteria:
      - context: $response.body
        condition: $.results.sender_verified == true
        type: jsonpath
    - name: pendingVerification
      type: end
      criteria:
      - context: $response.body
        condition: $.results.sender_verified == false
        type: jsonpath
  outputs:
    senderId: $steps.createVerifiedSender.outputs.senderId
    senderVerified: $steps.checkSteps.outputs.senderVerified

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/sendgrid-create-verified-sender-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.