mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 12:27:48 +00:00
* ISCCOMPLI-834: move 'alerts' from FullCampaign to SlimCampaign * ISCCOMPLI-834: move 'alerts' from FullCampaign to SlimCampaign * ISCCOMPLI-834: add totalCertifications and completedCertifications * ISCCOMPLI-834: add integer format * ISCCOMPLI-834: move created field from Campaign to SlimCampaign' by github action: 7023526642
25 lines
583 B
YAML
25 lines
583 B
YAML
type: object
|
|
properties:
|
|
userAlias:
|
|
nullable: false
|
|
type: string
|
|
description: User alias from table spt_identity field named 'name'
|
|
example: will.albin
|
|
deliveryType:
|
|
nullable: false
|
|
type: string
|
|
enum:
|
|
- SMS_PERSONAL #("sms", "phone")
|
|
- VOICE_PERSONAL #("voice", "phone")
|
|
- SMS_WORK #("sms", "work")
|
|
- VOICE_WORK #("voice","work")
|
|
- EMAIL_WORK #("email"L, "email")
|
|
- EMAIL_PERSONAL #("email", "personalEmail")
|
|
description: Token delivery type
|
|
example: "EMAIL_WORK"
|
|
required:
|
|
- userAlias
|
|
- deliveryType
|
|
|
|
|