Problem with listing list API

Hi I am using this call
https://production-gameflip.fingershock.com/api/v1/listing?owner=owner&visibility=public,unlisted&kind=item,gig&status=draft,ready,onsale,sold

but it doesn’t respond for neither expired items nor for any other on draft or ready! Only the items that onsale status

Hello

Your profile verified ? or did you submit your phone bill.

Of course, I made an error on my description the API call is returning the items that only on onsale status I am changing the visibility status public or unlisted

So, i think you have to talk to the support about this problem via ticket.

Here’s gameflip.zendesk.com/hc/en-us/requests/new

Expired:

/api/v1/listing?limit=50&visibility=public,unlisted&kind=item,gig&status=onsale&owner=OWNER&expiration=,now

Draft/Ready:

/api/v1/listing?limit=50&visibility=public,unlisted&kind=item,gig&status=draft,ready&owner=OWNER&expiration=

You can see these URLs from monitoring the HTTP calls from the tabs on https://gameflip.com/listings

So, i think you need a help from the support just send to them a ticket.

@Ewgar

How can i delete my posts from onsale and draft with api. Can you help me? Thanks

PATCH the listing to draft using the data payload:

[
    { "op": "replace", "path": "/status", "value": "draft" },
]

then DELETE it.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.