Get App
Gets general information of an App, including the name, description, related Space, creator and updater information.
Method | GET |
---|---|
URL | https://{subdomain}.kintone.com/k/v1/app.json |
URL(guest space) | https://{subdomain}.kintone.com/k/guest/{SpaceID}/v1/app.json |
Authentication | Password Authentication, API Token Authentication, Session Authentication |
Content-Type | application/json (not needed if specifying the query with a query string) |
Permissions
Permissions to view the App is needed.
Request Parameters
Parameter | Value | Required | Description |
---|---|---|---|
id | Integer or String | Yes | The App ID. |
Sample Request
JavaScript (using Kintone REST API Request)
|
|
XMLHttpRequest
|
|
Response Parameters
Parameter | Type | Description |
---|---|---|
appId | String | The App ID. |
code | String | The App Code of the App. An empty string is returned if an App Code is not set in the App's settings. |
name | String | The name of the App. If Localization settings are enabled, the localized name will be returned. The localization language will be dependent on the language settings of the Kintone user authenticating this API. |
description | String | The description of the App. If Localization settings are enabled, the localized name will be returned. The localization language will be dependent on the language settings of the Kintone user authenticating this API. |
spaceId | String | If the App was created inside a Space, it will return the Space ID. If not, null is returned. |
threadId | String | If the App was created inside a Space, it will return the Thread ID of the Thread of the space it belongs to. Apps that are created inside Spaces using the GUI will be automatically allocated to the default Thread. If the App was not created in a Space, null is returned. |
createdAt | String | The date of when the App was created. |
creator | Object | The information of the user who created the App. |
creator.code | String | The log in name of the creator. An empty string is returned for inactive users and deleted users. |
creator.name | String | The display name of the creator. An empty string is returned for inactive users and deleted users. |
modifiedAt | String | The date of when the App was last modified. |
modifier | Object | The information of the user who last updated the App. |
modifier.code | String | The log in name of the last updater. An empty string is returned for inactive users and deleted users. |
modifier.name | String | The display name of the last updater. An empty string is returned for inactive users and deleted users. |
Sample Response
|
|