POST Subscriber/{subscriberId}/Scheduling/ClientForm/SendForm

Resend client form with specific form Id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
subscriberId

string

None.

Body Parameters

ClientFormModel
NameDescriptionTypeAdditional information
ClientId

Client Id to send an email

integer

None.

FormId

List of sending form Ids

Collection of globally unique identifier

None.

NotifyConsumer

Whether the consumer should receive a notification

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "ClientId": 1,
  "FormId": [
    "cd082baa-b884-4ef1-8fa3-19345ba81b1e",
    "7d3129cb-4ad3-4ab3-a1aa-21a2b602255e"
  ],
  "NotifyConsumer": true
}

application/xml, text/xml

Sample:
<ClientFormModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mindbody.SubscriberApi.WebApi.Areas.Push.Models">
  <ClientId>1</ClientId>
  <FormId xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>cd082baa-b884-4ef1-8fa3-19345ba81b1e</d2p1:guid>
    <d2p1:guid>7d3129cb-4ad3-4ab3-a1aa-21a2b602255e</d2p1:guid>
  </FormId>
  <NotifyConsumer>true</NotifyConsumer>
</ClientFormModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HTTP status code 200 OK


HTTP status code 400 BadRequest


HTTP status code 403 Forbidden

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.