Hi all,
I have a make scenario with a single stripe api call that creates a connected account. When I execute the scenario with stripe in test mode using a rk_test key it works fine. When I change stripe to live mode and use a rk_live key it doesnt work properly.
In my api call I am sending email, phone, name, etc to be used in the connected account setup. when I do the test call it creates the stripe connected account and all the data I put in is carried over to the new connected account.
When I send the exact same call using live mode and an rk_live key it creates the connected account, but all of the details I sent with the call are removed from the response body and none of those details show up in the new connected account. Here is my body code from the call that goes to v1/accounts…
v1/accounts...
{
"business type": "individual",
"company": {
"owners_provided": true,
"name": "DEF Company Name",
"phone": "7777777777"
},
"controller": {
"fees": {
"payer": "account"
},
"losses": {
"payments": "stripe"
},
"requirement_collection": "stripe",
"stripe_dashboard": {
"type": "full"
}
},
"country": "US",
"default_currency": "usd",
"email": "account_holder1@email.com",
"individual": {
"address": {
"city": "individual city",
"country": "US",
"line1": "def street",
"line2": null,
"postal_code": "12349",
"state": "VA"
},
"dob": {
"day": "1",
"month": "1",
"year": "1911"
},
"email": "individual_email1@email.com",
"first_name": "cfn",
"last_name": "cln",
"metadata": {},
"phone": "7777777777",
"relationship": {
"director": true,
"executive": true,
"legal_guardian": true,
"owner": true,
"percent_ownership": null,
"representative": true,
"title": null
}
},
"settings": {
"branding": {
"icon": "file_1PW542GqwEnb3rUtDKdNzNiV",
"logo": "file_1PW542GqwEnb3rUtqywDDedX",
"primary_color": "#525f7f",
"secondary_color": "#0074d4"
},
"payments": {
"statement_descriptor": "XYZ COMPANY",
"statement_descriptor_kana": null,
"statement_descriptor_kanji": null
},
"payouts": {
"debit_negative_balances": true,
"schedule": {
"delay_days": 2,
"interval": "daily"
}
},
"type": "standard"
}
here’s the empty response body, see the attached images
{
"object": "account",
"business_profile": {
"annual_revenue": null,
"estimated_worker_count": null,
"mcc": null,
"name": null,
"product_description": null,
"support_address": null,
"support_email": null,
"support_phone": null,
"support_url": null,
"url": null,
},
"business_type": null,
"capabilities": {},
"charges_enabled": false,
"controller": {
"fees": {
"payer": "account",
and so on. the individual section is missing and all the populated fields on the original call are stripped out. help!@