Retrieves a list of applications that are available in the Rebilly App Store. Applications may be sorted by: id, name, status, createdTime, and updatedTime.
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.
Expands a request to include embedded objects within the _embedded property of the response. This field accepts a comma-separated list of objects.
For more information, see Embedded resources.
- Mock serverhttps://www.rebilly.com/_mock/catalog/all/applications
- Sandbox serverhttps://api-sandbox.rebilly.com/organizations/{organizationId}/applications
- Live serverhttps://api.rebilly.com/organizations/{organizationId}/applications
- SecretApiKey
- JWT
curl -i -X GET \
'https://www.rebilly.com/_mock/catalog/all/applications?limit=1000&offset=1000&filter=string&q=string&expand=string&fields=string&sort=string' \
-H 'REB-APIKEY: YOUR_API_KEY_HERE'List of applications retrieved.
Unique identifier of the application.
Unique identifier of the file that contains the application logo.
Short descriptive tagline that is displayed for the application in the App Store.
Detailed description of the application. This field accepts markdown and simple text.
Current status of the application in the App Store.
List of permissions that are available to the application. To add permissions, contact Rebilly Support.
[ "GetInvoice", "GetInvoiceCollection", "GetCustomer", "GetCustomerCollection" ]
Defines settings that users complete when they install the application. This field accepts JSON-schema drafts 4, 6, and 7.
{ "type": "object", "properties": { "email": { … }, "max": { … } }, "required": [ "email" ] }
Date and time when the resource is created. This value is set automatically when the resource is created.
Date and time when the resource is updated. This value is set automatically when the resource is updated.
[ { "id": "app_01H0HT25X7XXCJGS4H8VJSYF2Y", "name": "string", "logoId": "4f6cf35x-2c4y-483z-a0a9-158621f77a21", "authorName": "string", "authorLogoId": "4f6cf35x-2c4y-483z-a0a9-158621f77a21", "tagline": "string", "description": "string", "status": "pending-approval", "permissions": [ … ], "configurationUrl": "http://example.com", "configuredBy": "user", "properties": { … }, "createdTime": "2019-08-24T14:15:22Z", "updatedTime": "2019-08-24T14:15:22Z", "_links": [ … ], "_embedded": { … } } ]