'Kintone Add Record API required field error

When I call ADD RECORD API of Kintone using postman

URL

https://mysubdomain.cybozu.com/k/v1/record.json with POST method

Header

X-Cybozu-API-Token => mytoken

Content-Type => application/json

Body (Json)

{
    "app": XXX,
    "record": {
        "姓": {
            "value": "Olivia"
        }
    }
}

姓 is required field in my application on Kintone.

When I send request on postman

I got this required field error

{
    "code": "CB_VA01",
    "id": "hgmnVpwalK1Xl4Ebr3ss",
    "message": "入力内容が正しくありません。",
    "errors": {
        "record.姓.value": {
            "messages": [
                "必須です。"
            ]
        }
    }
}

It takes too long for me. Please help me! Thank for giving your time.

#Kintone



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source