Temporary Email

Temporary Email API Documentation

REST API

Swagger docs located here.

All requests (bar token request) require an authorisation token. Sample flow for generating an email and searching the inbox:

  1. POST /gtoken (No request body needed)
    • Extract access_token from the response body. Add this to subsequent request headers e.g.
      • { 'Authorization': 'Bearer __access_token__'}
  2. POST /email (No request body needed, authorisation header required)
    • Extract email from the response body
  3. POST /search/__email__/inbox with request body InboxSearch and authorisation header
    • Sample request body { "contains_subject": "subject"}