Plan Information
To facilitate the management of your plan, you can directly consult detailed information about its status and available credits via the API. This endpoint provides essential data on the current plan, giving you more autonomy to track its status and manage usage effectively.
Endpoint:GET
https://api.zapsign.com.br/api/v1/info-plan
Headers
Authorization*
string
API token prefixed with the word "Bearer". Ex: Bearer c7f35c84-7893-4087-b4fb-d1f06c23

This endpoint returns information about the plan, including:
Plan name (
name
)Number of credits in the account (
number_of_credits
)Plan status (
status
): can bepaid
,pending_payment
,unpaid
, orcanceled
Period (
period
): monthly (monthly
) or annual (annual
)End date of the current period (
current_period_end
)
Example Response
{
"name": "Test Plan",
"number_of_credits": "100",
"status": "paid",
"period": "annual",
"current_period_end": "dd-mm-yyyy"
}
Last updated
Was this helpful?