Retrieves details of 1 record from an App by specifying the App ID and Record ID.
Method | GET |
URL | https://{subdomain}.kintone.com/k/v1/record.json |
URL(guest space) | https://{subdomain}.kintone.com/k/guest/{SpaceID}/v1/record.json |
Authentication | Password Authentication, API Token |
Content-Type | application/json (not needed if specifying the query with a query string) |
Request Parameters
PARAMETER | VALUE | REQUIRED | DESCRIPTION |
---|---|---|---|
app | Integer or String | Yes | The App ID. |
id | Integer or String | Yes | The Record ID. |
Sample Requests (Query string)
Query String
https://{subdomain}.kintone.com/k/v1/record.json?app=20&id=100
kintone REST API Request Example
curl Sample
Sample Requests (JSON)
kintone REST API Request Example
curl Sample
Response Parameters
Parameter | Type | Description |
---|---|---|
record | Object | The type and value of all fields within the record are included in the object. |
Sample Response
A record object of fields that exist in the specified App are responded.
Each field information includes the field type and value(s) stored in the specified record of the App.
Check the field types documentation for more details on each field type.
Get Multiple Records
To retrieve data of multiple records, refer to the Get Records API article.