フィールドの前に「DE:」を付けることができます。これは、https://developers.attask.com/api-docs/#Basicsで見つけたものです。
カスタムデータ
カスタム データ フィールドは、プレフィックス "DE:" を使用して取得することもできます。たとえば、「CustomText」というパラメーターを使用してプロジェクトを要求するには、次の要求を行うことができます。
/attask/api/project/search?fields=DE:CustomText
戻るだろう
{
"name": "custom data project",
"ID": "4c9a954f0000001afad0687d7b1b4e43",
"DE:CustomText": "task b"
}
また、parameterValues フィールドをリクエストして、オブジェクトのすべてのカスタム データを取得することもできます。
/attask/api/project/search?fields=parameterValues
次のようなものを返すかもしれません
{
"name": "custom data project",
"ID": "4c9a954f0000001afad0687d7b1b4e43",
parameterValues: {
"DE:CustomText": "task b",
"DE:CustomNumber": 1.4,
"DE:CustomCheckBoxes": ["first", "second", "third"]
}
}