Resend transaction receipt

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://docs.enjovia.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Enjovia API MCP server": {
  "url": "https://docs.enjovia.com/mcp"
}
Close
POST /transactions/{transaction}/resend

Requires view_orders permission

Headers

  • Account-ID string(uuid) Required

    Account ID - Can be found on the Dashboard under Settings → API Tokens

Path parameters

  • transaction string(uuid) Required
application/json

Body Required

  • email string(email) Required

Responses

  • 200 application/json

    Receipt email queued

  • 404

    Transaction not found

POST /transactions/{transaction}/resend
curl \
 --request POST 'https://api.asia.enjovia.app/transactions/{transaction}/resend' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --header "Account-ID: string" \
 --data '{"email":"hello@example.com"}'
Request examples
# Headers
Account-ID: string

# Payload
{
  "email": "hello@example.com"
}
Response examples (200)
{}