POST Subscriber/{subscriberId}/Scheduling/AppointmentReminder/Resend

Resend appointment reminders for the givin client ids, date, and time

Request Information

URI Parameters

NameDescriptionTypeAdditional information
subscriberId

string

None.

Body Parameters

Client ids and the current date time for resending appointment reminders

AppointmentReminderResendRequest
NameDescriptionTypeAdditional information
ClientIds

A list of client ids to resend appointment reminders for

Collection of integer

None.

ForDateTime

Typically the current date time in the subscribers time zone

date

None.

Request Formats

application/json, text/json

Sample:
{
  "ClientIds": [
    1,
    2
  ],
  "ForDateTime": "2024-09-29T06:27:19.4642461-07:00"
}

application/xml, text/xml

Sample:
<AppointmentReminderResendRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mindbody.Api.Subscriber.Areas.Scheduling.Models">
  <ClientIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </ClientIds>
  <ForDateTime>2024-09-29T06:27:19.4642461-07:00</ForDateTime>
</AppointmentReminderResendRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.