I'm having some trouble populating a custom field on a card via. the API. The URL I am using is:
https://api.trello.com/1/card/{CardID}/customField/{CustomFieldID}/item?key={Key}&token={Token}
The response I'm getting when making the request is a 400 code, and the response body is:
Invalid value for custom field type
The data that is being sent in the PUT request is:
{ "value" : { "text": "Hello, world!" }}Is there anything obvious that I'm doing wrong here? Would you be able to point me in the right directiion? The custom field is of type: text, so I'm at a loss.