Create

Creates a program stripe account with included fields.

post
Authorizations
Body
stripe_account_idstringRequired

The ID of the stripe account associated to the program.

application_fee_percentagenumberOptional

Percentage that a restaurant is charged for using Hang's ordering platform.

Responses
200
Successful response
application/json
post
POST /partner-api/v2/admin/program_stripe_accounts/create HTTP/1.1
Host: 
X-API-Key: YOUR_API_KEY
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 59

"stripe_account_id='text'&application_fee_percentage=1"
200

Successful response

{
  "program_stripe_account": {
    "id": "text",
    "stripe_account_id": "text",
    "program_id": 1,
    "application_fee_percentage": 1
  }
}