Properties
| Name | Type | Description |
|---|---|---|
| contact_information | object | |
| method | string | Method used for distribution |
| template | string | Template to use for distribution. In the current version this value is not used and might be removed in the future. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DistributionRequestV1",
"title": "DistributionRequestV1",
"type": "object",
"required": [
"contact_information",
"method"
],
"properties": {
"contact_information": {
"$ref": "#/components/schemas/DistributionContactV1"
},
"method": {
"type": "string",
"example": "sms",
"description": "Method used for distribution",
"enum": [
"sms",
"email",
"token"
]
},
"template": {
"type": "string",
"example": "INSTORE_PURCHASE",
"description": "Template to use for distribution. In the current version this value is not used and might be removed in the future.",
"enum": [
"INSTORE_PURCHASE"
]
}
}
}