v1

latestOpenAPI 3.0.02026-07-14198572488.4 KB
Billing

List Billing Emails

List all billing related emails associated with the account

get/v1/billing/emails

Query parameters

pageinteger

Page of results to include (default = 1)

per_pageinteger

How many results to include in each page (default = 10)

Response

OK

successboolean

whether the request succeeded

errorsstring[]
messagesstring[] nullable

Example response

{
  "success": true,
  "errors": [],
  "messages": [],
  "metadata": {
    "page": 1,
    "page_size": 10,
    "total": 150
  },
  "result": [
    {
      "id": 880088,
      "subject": "Credit Card Payment Confirmation",
      "message": "<!DOCTYPE html>\n<html xmlns=\"http://www.w3.org/1999/xhtml xmlns:v=\"urn:schemas-microsoft-com:vml\">\n<head>",
      "date": "2024-05-21 11:13:10",
      "to": "customer@rocket.net",
      "cc": "billing@rocket.net",
      "bcc": "bcc@rocket.net"
    }
  ]
}