To send email to a customer, use the following request:

POST /customers/id/email

where:

  • id (integer) is the customer ID.


Request JSON Objects

Valid JSON parameters include the following.

ParameterTypeRequiredDefinition

subject

stringNoEmail subject
bodystringNoEmail body

Example request

PATCH /customers/1/email HTTP/1.1
Content-Type: application/json
Authorization: Bearer f794846b7c26621688e1e06164975b4eae8ce2f6

{
	"subject": "email subject",
	"body": "message content",
}

Response

The LAC REST API returns the standard HTTP response codes described in the following table.

Status CodeDescription
200 OKEmail sent.
403 ForbiddenInvalid or expired token provided.
404 Not FoundCustomer id does not exist.

Example Response

HTTP/1.1 200 OK
Content-Type: application/json

{
	"message": "Success!"	
}
  • No labels