Register an email sender with an API Key for using email with Verify V2.
643 matches
Other/Account
Register an email sender
v1.0.0Input
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
{
"type": "object",
"properties": {
"api_secret": {
"type": "string"
},
"application_ids": {
"type": "object",
"description": "An optional array of additional ApplicationID's that the value is to be assigned to.",
"items": {
"type": "string"
}
},
"name": {
"type": "string",
"description": "An optional name to be attached to this binding"
},
"provider": {
"type": "string",
"format": "enum",
"description": "The delivery method by which the value would be assigned. Always `email`",
"enum": [
"email"
]
},
"value": {
"type": "string",
"format": "email",
"description": "The email adress to attach to the application(s)"
}
},
"required": [
"api_secret",
"provider",
"value"
],
"additionalProperties": false
}Output
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
{
"type": "object",
"properties": {
"application_ids": {
"type": "array",
"description": "An array of ApplicationID strings attached to the value provided.",
"items": {
"type": "string"
}
},
"name": {
"type": "string",
"description": "An optional name to be attached to this binding"
},
"provider": {
"type": "string",
"format": "enum",
"description": "Enum identifer of provider type.",
"enum": [
"email"
]
},
"value": {
"type": "string",
"description": "Value given to the provider to attach to the Application IDs."
}
}
}