Skip to main content
GET
/
packages
cURL
curl --request GET \
  --url https://api.yourjobsearchgenius.ai/v1/packages \
  --header 'Authorization: Bearer <token>'
[
  {
    "_id": "<string>",
    "name": "<string>",
    "price": 123,
    "interval": "Daily",
    "freeTrialDays": 7,
    "status": "Active"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer<int32>

The maximum number of results to return

skip
integer<int32>

The maximum number of results to skip

Response

Customers response

_id
string
required

Unique identifier for the package

name
string

The name of the package.

price
integer<int64>

The price of the package.

interval
enum<string>

The billing interval for the package. Possible values: Daily, Weekly, Bi-Weekly, Monthly, Quarterly, Yearly.

Available options:
Daily,
Weekly,
Bi-Weekly,
Monthly,
Quarterly,
Yearly
Example:

"Daily"

freeTrialDays
integer<int64>
default:0

The number of free trial days. Send 0 if no free trial days. Min:0, Max:7.

Required range: x <= 7
Example:

7

status
enum<string>

The status of the package. Possible values: Active, Inactive.

Available options:
Active,
Inactive
Example:

"Active"