GET
/
frontend
/
order
/
{client_id}
/
{program_id}
/
{session_id}
curl --request GET \
  --url https://api.helpyousponsor.com/v1/frontend/order/{client_id}/{program_id}/{session_id}
{
  "status": "success",
  "data": {
    "session_id": "abc123",
    "client_id": 1,
    "program_id": 1,
    "signup_fields": [
      "<string>"
    ],
    "text_checkout": "Checkout",
    "useCC": true,
    "isDonorCardActive": true,
    "session_logged_in": true,
    "login_box": "Login Box",
    "num_of_sponsorships": 1,
    "payment_options": [
      "<string>"
    ],
    "hide_payment_method": false,
    "default_payment_method": "Credit Card",
    "months": {
      "10": "10 - October",
      "11": "11 - November",
      "12": "12 - December",
      "01": "01 - January",
      "02": "02 - February",
      "03": "03 - March",
      "04": "04 - April",
      "05": "05 - May",
      "06": "06 - June",
      "07": "07 - July",
      "08": "08 - August",
      "09": "09 - September"
    },
    "years": {
      "2022": 2022,
      "2023": 2023,
      "2024": 2024,
      "2025": 2025,
      "2026": 2026,
      "2027": 2027,
      "2028": 2028,
      "2029": 2029,
      "2030": 2030,
      "2031": 2031
    },
    "stripe_pubkey": "pk_test_1234",
    "processing_fee": "$5.00",
    "processing_percentage": "2.9%",
    "num_sponsorships": 1
  }
}

Path Parameters

client_id
integer
required

The id of the client

program_id
integer
required

The id of the program

session_id
string
required

Session ID

Response

200
application/json
Successful operation
status
string
Example:

"success"

data
object