Retrieves an application with a specified ID.
Applications retrieved.
name required | string Name of the application. |
logoId required | string <= 50 characters File ID of the application logo. |
authorName required | string Name of the application author. |
tagline required | string Tagline of the application. |
description required | string Detailed application description. This field accepts markdown and simple text. |
permissions required | Array of strings <operationId> List of permissions that are available to the application. If you would like to add permissions, contact Rebilly Support. |
id | string <= 50 characters ID of the application. |
authorLogoId | string <= 50 characters File ID of the author's logo. |
status | string Status of the application. |
properties | object Defines settings that users can complete when they install the application. This field accepts JSON-schema drafts 4, 6, and 7. |
createdTime | string <date-time> (CreatedTime) Date and time which is set automatically when the resource is created. |
updatedTime | string <date-time> (UpdatedTime) Date and time which updates automatically when the resource is updated. |
Array of objects Related links. | |
object Embedded objects that are requested by the | |
Unauthorized access. Invalid credentials used.
Access forbidden.
$application = $client->applications()->load('applicationId');
{- "id": "4f6cf35x-2c4y-483z-a0a9-158621f77a21",
- "name": "string",
- "logoId": "4f6cf35x-2c4y-483z-a0a9-158621f77a21",
- "authorName": "string",
- "authorLogoId": "4f6cf35x-2c4y-483z-a0a9-158621f77a21",
- "tagline": "string",
- "description": "string",
- "status": "pending-approval",
- "permissions": [
- "GetInvoice",
- "GetInvoiceCollection",
- "GetCustomer",
- "GetCustomerCollection"
], - "properties": {
- "type": "object",
- "properties": {
- "email": {
- "type": "string"
}, - "max": {
- "type": "integer",
- "minimum": 0,
- "exclusiveMaximum": 100
}
}, - "required": [
- "email"
]
}, - "createdTime": "2019-08-24T14:15:22Z",
- "updatedTime": "2019-08-24T14:15:22Z",
- "_links": [
- {
- "href": "string",
- "rel": "self"
}
], - "_embedded": {
- "applicationInstance": {
- "status": "enabling",
- "settings": {
- "color": "red",
- "limit": "5"
}, - "createdTime": "2019-08-24T14:15:22Z",
- "updatedTime": "2019-08-24T14:15:22Z",
- "_links": [
- {
- "href": "string",
- "rel": "self"
}
]
}
}
}