POST
/
api
/
v2
/
product
/
subscribe
curl --request POST \
  --url https://api.vida.dev/api/v2/product/subscribe \
  --header 'Content-Type: application/json' \
  --data '{
  "productPlanId": "pplan-vida-business-basic",
  "term": "month",
  "cancelUrl": "https://yoursite.io/cancel",
  "successUrl": "https://yoursite.io/success"
}'
{
  "success": true,
  "message": "Success"
}

Authorizations

token
string
query
required

Vida API Token

Body

application/json
productPlanId
string
required

Product Plan Id to enable subscription

Example:

"pplan-vida-business-basic"

term
string
required

Subscription length of month or year

Example:

"month"

cancelUrl
string

If using external payment processor (eg Stripe) what url to redirect if payment canceled

Example:

"https://yoursite.io/cancel"

successUrl
string

If using external payment processor (eg Stripe) what url to redirect if payment successful

Example:

"https://yoursite.io/success"

Response

200
application/json
Successfully subscribed
success
boolean
Example:

true

message
string
Example:

"Success"