Add Record
Adds 1 record to an App.
Method | POST |
---|---|
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 Authentication , Session Authentication |
Content-Type | application/json |
Contents
Permissions
- Permission to add records into the App is needed.
- Permission to edit records that are included in the request parameters are needed.
- Permission to edit fields that are included in the request parameters are needed.
Request Parameters
PARAMETER | VALUE | REQUIRED | DESCRIPTION |
---|---|---|---|
app | Integer | Yes | The App ID. |
record | Object | Optional | Field codes and values are specified in this object. The values that can be specified vary depending on the type of field. If ignored, the record will be added with default field values. If field codes that don't exist are specified, these will be ignored. For more information on field types, refer to the following article: Field Types |
Sample Request
|
|
curl Sample
|
|
Response Parameters
Parameter | Type | Description |
---|---|---|
id | String | The Record ID of the created Record. |
revision | String | The revision number of the Record. |
Sample Response
|
|
Limitations
Permission to Manage App is needed to add values to the following fields:
- Created by
- Updated by
- Created datetime
- Updated datetime
If there are fields with the Required field option turned on, those fields must be included in the request.
Values cannot be added to the following fields:
- The Field Mappings targets of the Lookup field
- Status
- Categories
- Calculated
- Assignee
- Text fields with the Calculate automatically option
For other limitations, please check the Limitations section in the following article:
Kintone REST API Overview
Add Multiple Records
To add data of multiple records, refer to the following article:
Add Records