Getting Selected Pay Options

Gets a list of pay options for a Person.

Method Info
Url https://www.payit2.com/api/v1/collect-page/{CollectPageId}/Person/{PayerId}/pay-options
Verb GET
Headers X-PayItSquare-AppKey, X-PayItSquare-Token
{CollectPageId} The id of the collect page.
{PayerId} The id of the Person.
Output
Property Data Type Other Info
Id Int32 The ID of this pay option.
AmountPer Single The amount paid per pay option.
Quantity Int32 The number purchased by the Person.
PayOptionId Guid Array This is the ID of the pay option the Person is purchasing.
Sample Get Output
[
  {
    "Id": 1235,
    "AmountPer": 0.0,
    "Quantity": 1,
    "PayOptionId": null
  },
  {
    "Id": 1235,
    "AmountPer": 0.0,
    "Quantity": 1,
    "PayOptionId": null
  }
]