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:
- 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__'}
- POST /email (No request body needed, authorisation header required)
- Extract email from the response body
- POST /search/__email__/inbox with request body InboxSearch and authorisation header
- Sample request body { "contains_subject": "subject"}