Skip to main content
GET
/
library
/
v1beta1
/
{libId}
/
workflowEmails
cURL
curl --request GET \
  --url https://aodocs.altirnao.com/api/library/v1beta1/{libId}/workflowEmails \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "kind": "<string>",
  "nextPageToken": "<string>",
  "workflowEmails": [
    {
      "content": "<string>",
      "createdTime": "2023-11-07T05:31:56Z",
      "description": "<string>",
      "id": "<string>",
      "isDefault": true,
      "kind": "<string>",
      "lastModifiedTime": "2023-11-07T05:31:56Z",
      "layout": "NO_LAYOUT",
      "libraryId": "<string>",
      "name": "<string>",
      "sender": "<string>",
      "subject": "<string>",
      "type": "ACTION"
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

libId
string
required

The ID of the library

Query Parameters

type
enum<string>

The type of the workflow email. Valid values are: ACTION, NOTIFICATION, ACTION_REMINDER.

Available options:
ACTION,
NOTIFICATION,
ACTION_REMINDER
pageSize
integer<int32>
default:50

The maximum number of workflow emails per page. (Default: 50)

pageToken
string

The token for continuing a previous list request on the next page. This should be set to the value of 'nextPageToken' from the previous response.

domain
string

The G Suite domain

securityCode
string

The security code

Response

200 - application/json

A ApiWorkflowEmailList response

count
integer<int32>
kind
string
nextPageToken
string
workflowEmails
object[]