- Getting Started
- Authentication
- Common Error Responses
- Filtering Data
- Authentication
- Organizations
- Organization Subscriptions
- Subscribe to a plan
- List organizations
- Create Organization
- List dependent subscriptions
- Show an organization
- Update an organization
- Delete an organization
- Subscribe an organization to a plan
- Unsubscribe an organization from a plan
- Move a user from one organization to another
- Export all organizations to a CSV file
- Users
- User
- User 2FA
- User Preferences
- Get current userGET
- Update current userPUT
- Change current user passwordPUT
- Get current user active plans (Not implemented yet)GET
- Get organization membersGET
- Get current user productsGET
- Get current organizationGET
- Update current organizationPUT
- Get subscriptions historyGET
- Change users productPUT
- Checks if authorization token is validGET
- Get current user permissionsGET
- Check if the user can be deletedGET
- Transfers all the resources from the user to another userPUT
- Delete my accountDELETE
- Targets
- Schedules
- Scans
- Reports
- Advanced Reports
- Vulnerabilities
- Exceptions
- Scanners
- Port Lists
- Subscriptions
- Hosts
- Notifications
- Whitelabel
- Webhooks
- Webhook Events
- Audit
- Whitelabel Settings
Get subscriptions history
GET
/v2/user/subscriptions_history
User
Last modified:2024-11-22 19:53:37
Request
Query Params
page
integerÂ
optional
per_page
integerÂ
optional
q
stringÂ
optional
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v2/user/subscriptions_history'
Responses
🟢200OK
application/json
Body
data
array [object {3}]Â
optional
id
string <uuid>
optional
type
stringÂ
optional
attributes
objectÂ
optional
Example
{
"data": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"type": "string",
"attributes": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"price": "9.99",
"status": "active",
"start_date": "2023-12-27T18:50:24.193Z",
"end_date": "2023-12-27T18:50:24.193Z",
"created_at": "2023-12-27T18:50:24.193Z",
"updated_at": "2023-12-27T18:50:24.193Z",
"trial_enabled": false,
"trial_duration_days": 7,
"auto_renewal": false,
"cancellation_reason": "Authentication issue",
"product": {
"code": "pci",
"name": "PCI",
"description": "PCI product"
}
}
}
]
}
🟠401Unauthorized
Modified at 2024-11-22 19:53:37