Skip to content

Put Registration Field Value

pinpointsmsvoicev2_put_registration_field_value R Documentation

Creates or updates a field value for a registration

Description

Creates or updates a field value for a registration.

Usage

pinpointsmsvoicev2_put_registration_field_value(RegistrationId,
  FieldPath, SelectChoices, TextValue, RegistrationAttachmentId)

Arguments

RegistrationId

[required] The unique identifier for the registration.

FieldPath

[required] The path to the registration form field. You can use describe_registration_field_definitions for a list of FieldPaths.

SelectChoices

An array of values for the form field.

TextValue

The text data for a free form field.

RegistrationAttachmentId

The unique identifier for the registration attachment.

Value

A list with the following syntax:

list(
  RegistrationArn = "string",
  RegistrationId = "string",
  VersionNumber = 123,
  FieldPath = "string",
  SelectChoices = list(
    "string"
  ),
  TextValue = "string",
  RegistrationAttachmentId = "string"
)

Request syntax

svc$put_registration_field_value(
  RegistrationId = "string",
  FieldPath = "string",
  SelectChoices = list(
    "string"
  ),
  TextValue = "string",
  RegistrationAttachmentId = "string"
)