Schema Structure
- type (
string) - enum: email (required) - data (
object) (required)- to (
string) (required) - cc (
string) - bcc (
string) - subject (
string) - body (
string)
- to (
We've updated our API endpoints to match what we use in our application. Some endpoints have been deprecated. See our Deprecated Endpoints page for migration details.
Static QR Category. Validate Email category
string) - enum: email (required)object) (required)
string) (required)string)string)string)string){
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "Email QR Category",
"description": "Static QR Category. Validate Email category",
"examples": [],
"additionalProperties": false,
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"email"
]
},
"data": {
"type": "object",
"additionalProperties": false,
"required": [
"to"
],
"properties": {
"to": {
"type": "string"
},
"cc": {
"type": "string"
},
"bcc": {
"type": "string"
},
"subject": {
"type": "string"
},
"body": {
"type": "string"
}
}
}
}
}
Was this page helpful?