Email delivery records

The delivery record for the email delivery service lets you check if any sent email encountered errors. See Enhanced email delivery log topic in the Sage Intacct Help Center for more information.

List email delivery records

get/objects/company-config/email-delivery-record

Returns a collection with a key, ID, and link for each email delivery record. This operation is mostly for use in testing; use the query service to find employee groups that meet certain criteria and specify the properties that are returned.

SecurityOAuth2
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": [
    • {
      • "key": "1",
      • "id": "1",
      • "href": "/objects/company-config/email-delivery-record/1"
      },
    • {
      • "key": "2",
      • "id": "2",
      • "href": "/objects/company-config/email-delivery-record/2"
      },
    • {
      • "key": "3",
      • "id": "3",
      • "href": "/objects/company-config/email-delivery-record/3"
      }
    ],
  • "ia::meta": {
    • "totalCount": 3,
    • "start": 1,
    • "pageSize": 100,
    • "next": null,
    • "previous": null
    }
}

Get an email delivery record

get/objects/company-config/email-delivery-record/{key}

Returns detailed information for a specified email delivery record.

SecurityOAuth2
Request
path Parameters
key
required
string

System-assigned unique key for the email delivery record.

Example: 34
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": {
    • "id": "1",
    • "key": "1",
    • "status": "queued",
    • "tenantContext": "WDIjad73gE8Q8aNLYEkv2zJn/CO3rAUxt3ia1wLRKFGeqC+4lSp48iFoYJ5LJLf36toGA7faZAVS/J5H1xHDfB8NQwyCi2HUtQNrWsE176jr7vRb",
    • "from": "Support <[email protected]>",
    • "subject": "dev01: Document due on 09/30/2023 for Customer - Associated Research Inc",
    • "failureStatus": null,
    • "failureReason": null,
    • "sentDateTime": "2024-01-15T11:29:15Z",
    • "lastUpdatedDateTime": null,
    • "emailMessage": {
      • "FROM": "Support <[email protected]>",
      • "SENDERNAME": "Support",
      • "SENDEREMAIL": "[email protected]",
      • "REPLY_TO": "Support <[email protected]>",
      • "CC": [ ],
      • "BCC": [ ],
      • "SUBJECT": "dev01: Document due on 09/30/2023 for Customer - Associated Research Inc",
      • "BODY": "Dear Customer,<br><br>A document is attached to this email as a PDF file.<br> Document No. Sales Invoice-Sal#0175#inv<br> Due Date: 09/30/2023<br><br>If you have any questions, please reply to this email.<br><br>To view this, click on the attachment. Adobe Acrobat should launch. If you do not have Acrobat installed on your computer, you can download it from <a href='http://www.adobe.com/products/acrobat/readstep2.html'>here</a><br><br>Sincerely,<br>Punji Chandrashekhar<br>AL_Prod_GL-main ([email protected])<br/><br/><br/><br/><br/><hr/><img width=\"120\" src=\"https://intacct-ops-prod-public-assets.s3.us-west-2.amazonaws.com/logo.png\"/>"
      },
    • "emailProviderId": "dt2FGrVFSNO0JQXAGSxTag",
    • "deliveryHistory": [
      • {
        },
      • {
        },
      • {
        }
      ],
    • "replyTo": "Support <[email protected]>",
    • "cc": "",
    • "bcc": "",
    • "body": "Dear Customer,<br><br>A document is attached to this email as a PDF file.<br> Document No. Sales Invoice-Sal#0175#inv<br> Due Date: 09/30/2023<br><br>If you have any questions, please reply to this email.<br><br>To view this, click on the attachment. Adobe Acrobat should launch. If you do not have Acrobat installed on your computer, you can download it from here<br><br>Sincerely,<br>Support<br>AL_Prod_GL-main ([email protected])<br/><br/><br/><br/><br/>",
    • "href": "/objects/company-config/email-delivery-record/1",
    • "ia::meta": {
      • "totalCount": 1,
      • "totalSuccess": 1,
      • "totalError": 0
      }
    }
}