API Endpoints
The API endpoint (URI or URL) must point to either the Test or Production (live) environment.
- Test API endpoint: https://api.test.paysafe.com/
For example: https://api.test.paysafe.com/subscriptionsplans/v1/ - Production API endpoint: https://api.paysafe.com/
For example: https://api.paysafe.com/subscriptionsplans/v1/
API Endpoint Patterns
The Payment Scheduler API allows you to manage recurring payments using the REST protocol. The protocol uses JSON for all requests and responses.
The following request types are supported:
- [Subscriptions]
- [Plans]
API Endpoint
https://api.test.paysafe.com/subscriptionsplans/v1/
Resource patterns
Endpoint URL | Description | Action |
---|---|---|
/plans | Create a Plan | POST |
/plans | Get All Plans | GET |
/plans/{id} | Get Plan by ID | GET |
/plans/{id} | Patch Plan | PATCH |
/plans/{planId}/subscriptions | Create a Subscription | POST |
/subscriptions/{id} | Patch Subscription | PATCH |
/subscriptions | Get All Subscriptions | GET |
/subscriptions/{id} | Get Subscription by ID | GET |
Was this page helpful?
On this Page