correspondenceDetails Subfields

The correspondenceDetails parameter of the Submit Case endpoint contains these fields as key/value pairs.

ParameterReqDescriptionExample
selectedChannelXString. The communication channel to update. Valid values are case-sensitive: Email or MailEmail
emailAddressString. The account holder's email address. Required if selectedChannel: Email.[email protected]
addressJSON object. The account holder's mailing address. Required if selectedChannel: Mail. Object contains the fields below.See Examples
line1String. The first line of the account holder's mailing address. Required if selectedChannel: Mail.123 Crimson St
line2String. The second line of the account holder's mailing address.Apt B6
line3String. The third line of the account holder's mailing address.ATTN: Supervisor
cityString. The city for the account holder's mailing address. Required if selectedChannel: Mail.Seattle
stateString. The two-character state of the account holder's mailing address.WA
zipString. The postal code of the account holder's mailing address. Required if selectedChannel: Mail. 5 digits or 5-4 digits98109-0032
countryString. The country of the account holder's mailing address. Required if selectedChannel: Mail.USA

Examples

If selectedChannel: Email

'correspondenceDetails': '{"selectedChannel": "Email", "emailAddress": "[email protected]"}'

If selectedChannel: Mail

'correspondenceDetails': '{"selectedChannel": "Mail", "address": {"line1": "123 Crimson St", "line2": "Apt B6", "line3": "ATTN: Supervisor", "city": "Seattle", "state": "WA", "zip": "98109-0032", "country": "USA"}}'