Skip to main content
GET
/
api
/
shop
/
marketplace
/
offers
/
my
Error
A valid request URL is required to generate request examples
{
  "result": [
    {
      "id": 123,
      "product_currency_setting_id": 14,
      "user_id": 456,
      "price_per_step": 100.5,
      "amount": 1000,
      "min_purchase_amount": 100,
      "status": 3,
      "marketplace_type": 1,
      "guarantee_delivery_time": "24 hours",
      "credential_system_type_id": 2,
      "description": "High quality account",
      "outer_name": "Premium Account",
      "internal_name": "Internal Name",
      "comment_for_reviewer": "Please review",
      "image": "storage/uploads/image.jpg",
      "is_enabled": true,
      "is_auto_activate_status": false,
      "data": {
        "1": "5",
        "2": "Horde",
        "3": "Custom server name"
      },
      "screenshots": [
        "storage/uploads/product_currency_offer/screenshot/example.jpg"
      ],
      "original_import_price": 90,
      "commission_percent": 15,
      "import_status": 1,
      "purchased_amount": 500,
      "last_review_comment": "Need more details",
      "credentials_recorded": true,
      "created_at": "2024-01-01T00:00:00Z",
      "updated_at": "2024-01-01T00:00:00Z",
      "deleted_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 100
}

Authorizations

Authorization
string
header
required

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

Query Parameters

offset
integer
Example:

0

limit
integer
Example:

20

sort_column
enum<string>

Column to sort by. * Possible values: * * - price_per_step: Sort by price per step * - guarantee_delivery_time: Sort by guarantee delivery time * - status: Sort by offer status * - created_at: Sort by creation date * - updated_at: Sort by last update date

Available options:
price_per_step,
guarantee_delivery_time,
status,
created_at,
updated_at
Example:

"price_per_step"

sort_direction
enum<string>

Sort direction. * Possible values: * * - asc: Ascending order (from lowest to highest) * - desc: Descending order (from highest to lowest)

Available options:
asc,
desc
Example:

"asc"

with_status
enum<integer>

Filter by offer status. * Possible values: * * - 1 (Draft): Offer is saved as draft and not visible to others * - 2 (Active): Offer is active and visible to customers * - 3 (Not Active): Offer is not active and not visible to customers * - 4 (Need Details): Offer has not passed the review and needs additional details * - 5 (On Review): Offer is under review * - 6 (Sold): There is an order for this offer * - 7 (Transfered): The order for this offer has been completed * - 8 (Review Passed): Offer has passed the review and waiting for activation

Available options:
1,
2,
3,
4,
5,
6,
7,
8
Example:

3

Response

Success

result
object[]

Array of offers

total
integer

Total number of offers

Example:

100