Examples

curl -i -H "Accept: application/json; version=1" \
-H "Content-type:application/json" \
-H "Authorization: Token eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI1NDEiLCJpYXQiOjE1MDI4NDIzMDV9.qIHEdRI9lLPfJXP-9eLY38JxtLsXdXlohREQnENKRrI" \
-X POST  \
-H 'Content-type: application/json' \
-d '{"subject": "hello api", "recipients": ["[email protected]", "[email protected]", "[email protected]"]}' \
https://api.record360.com/api/transactions/42/send_summary_email

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Cache-Control: max-age=0, private, must-revalidate

{
  "recipients":["[email protected]", "[email protected]", "[email protected]"]
}

Params

Param name Description
id
required

Transaction ID

Validations:

  • Must be a String

recipients
required

Email addresses for transaction summary email

Validations:

  • Must be an array of String

subject
optional

Subject of the email

Validations:

  • Must be a String