PUThttps://seller-api.playerauctions.com/api/v1/offers/powerleveling
Update an existing powerleveling (boosting) offer.
i. Request Example
{
"offerId": 71394385,
"gameId": 3637,
"title": "Simple Title Update",
"offerDesc": "<p>Simple Title Update</p>",
"offerDuration": 30,
"agreeCheck": true,
"isAgree": false,
"price": 69.98,
"totalUnit": 100,
"parentItemId": 863,
"itemId": ""
}
ii. Request Parameters
Body Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| offerId | int | Yes | Offer ID to update. |
| gameId | int | Yes | Game ID. |
| title | string | Yes | Offer title. |
| offerDesc | string | No | Offer description. |
| offerDuration | int | Yes | Offer duration in days(3, 7, 14, 30). |
| agreeCheck | bool | Yes | Indicates whether you agree to the [Secure Seller Delivery Agreement]. Only 'true' is accepted. |
| isAgree | bool | No | Controls whether to allow offer modification during the payment process. Set to true to enable. (Note: Has no effect on verifying orders). |
| price | decimal | Yes | Offer price. |
| totalUnit | int | Yes | Total units available. |
| parentItemId | int | Yes | Parent category ID. |
| itemId | int? | No | Category sub-item ID. |
iii. Response Example
Success Response
{
"code": 10000,
"message": "",
"requestId": "550e8400-e29b-41d4-a716-446655440000",
"data": {
"offerId": 71394386,
"navigateURL": "https://www.playerauctions.com/lol-boosting/71394386p!simple-title-update/",
"title": "Simple Title Update",
"productType": "powerleveling",
"gameName": "League of Legends",
"productName": "Power leveling",
"screenShot": "",
"imageBlacklist": ""
}
}Error Response
{
"code": 10002,
"message": "Invalid parameter.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}iv. Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | int | Response code. 10000 indicates success; other values indicate an error. |
| message | string | Response message. Contains error details on failure. |
| requestId | string | Unique identifier for the request, used for tracking. |
| data | object | Updated offer data. |
| └─ offerId | int | Unique identifier for the updated offer. |
| └─ navigateURL | string | Direct URL to view the offer on the marketplace. |
| └─ title | string | The updated title of the offer. |
| └─ productType | string | Type of product, always "powerleveling" for this endpoint. |
| └─ gameName | string | Full name of the game associated with the offer. |
| └─ productName | string | Display name of the product category. |
| └─ screenShot | string | URL of the offer's screenshot (leave empty if none). |
| └─ imageBlacklist | string | Blacklisted offer image identifier. Empty indicates that it is not on the blacklist. |