POST MembershipPayoutsBilling/Process/Credit

Called to start processing for Membership Payouts billing at Aria side. The authentication for this endpoint uses the X-SERVICE-TRUST header along with your JWT i.e. X-SERVICE-TRUST: {{jwt}} We can pass ("test_request = "true") in the request header just to test connectivity to this endpoint. It will not hit Subscriber Service

Request Information

URI Parameters

None.

Body Parameters

MembershipPayoutsBillingRequest
NameDescriptionTypeAdditional information
SubscriberIds

Collection of integer

None.

RunOnUtc

date

None.

Request Formats

application/json, text/json

Sample:
{
  "SubscriberIds": [
    1,
    2
  ],
  "RunOnUtc": "2024-09-29T06:18:18.33507-07:00"
}

application/xml, text/xml

Sample:
<MembershipPayoutsBillingRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mindbody.SubscriberApi.Dto.Requests.MembershipPayouts">
  <RunOnUtc>2024-09-29T06:18:18.33507-07:00</RunOnUtc>
  <SubscriberIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </SubscriberIds>
</MembershipPayoutsBillingRequest>

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.