Skip to main content
POST
/
api
/
omnichannel
/
send
Enviar email nuevo
curl --request POST \
  --url https://api.raul.ugps.io/api/omnichannel/send \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "to": [
    "<string>"
  ],
  "subject": "<string>",
  "body": "<string>",
  "cc": [
    "<string>"
  ],
  "attachments": [
    {
      "name": "<string>",
      "contentType": "<string>",
      "contentBytes": "<string>"
    }
  ]
}
'

Authorizations

Authorization
string
header
required

Bearer token authentication

Body

application/json
to
string[]
required
subject
string
required
body
string
required
cc
string[]
attachments
object[]

Response

201 - undefined