Use these operations to access Storefront transactions.
Storefront operations interact directly with the customer, and provide the customer with access to their own data.
To use Storefront operations, the customer must be issued a JWT with limited permissions. For more information, see Create a session with username and password and Exchange an authentication token. Storefront operations are intended to be used directly from an untrusted browser.
Retrieves a list of payout requests.
Criteria for filtering collection items. This field requires a special format. Use , to specify multiple allowed values. Use ; to specify multiple fields.
For more information, see Search filters.
- Mock serverhttps://www.rebilly.com/_mock/catalog/all/storefront/payout-requests
- Sandbox serverhttps://api-sandbox.rebilly.com/organizations/{organizationId}/storefront/payout-requests
- Live serverhttps://api.rebilly.com/organizations/{organizationId}/storefront/payout-requests
curl -i -X GET \
'https://www.rebilly.com/_mock/catalog/all/storefront/payout-requests?filter=string&sort=string&limit=1000&offset=1000&q=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'List of payout requests retrieved.
ID of the website. A website is where an organization obtains a customer. For more information, see Obtain an organization ID and website ID.
ID of the requested payment instrument to offer for the payout.
Status of the request.
| Enum Value | Description |
|---|---|
| pending | Request was created by the customer and is in a pending state for the configured pending period, unless it is marked as ready by a member of your organization. When automatic readiness is enabled, the payout request transitions to the |
| ready | Request was created by the customer and is ready for review. Depending on the configured |
| approved | Request was reviewed, approved, and is ready for processing. |
| in-progress | Request has allocations and is being processed. |
| fulfilled | Request is fully paid out. |
| canceled | Request is canceled by merchant or customer. |
| split | Request was split into two or more payout requests. |
| merged | Request was merged into another payout request. |
Date and time when the payout request is created.
Date and time when the payout request is updated.
[ { "id": "pout_req_0YVDMDE2BMC6KBB5MX76RF6T80", "websiteId": "web_0YV7DE4Z26DQSA1AC92FBJ7SEG", "paymentInstrumentId": "inst_0YVB8KPKNXCBR9EDX7JHSED75N", "currency": "USD", "amount": 0.1, "status": "pending", "createdTime": "2019-08-24T14:15:22Z", "updatedTime": "2019-08-24T14:15:22Z", "_links": [ … ] } ]