curl --request PUT \
--url http://localhost:3000/billing/{orgId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"stripeCustomerId": "<string>",
"billingEmail": "jsmith@example.com"
}
'{
"message": "<string>"
}curl --request PUT \
--url http://localhost:3000/billing/{orgId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"stripeCustomerId": "<string>",
"billingEmail": "jsmith@example.com"
}
'{
"message": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Default Response