Closed pchemali closed 2 years ago
Current behavior text property for Conversations/CustomField.php was never implemented. https://developer.helpscout.com/mailbox-api/endpoints/conversations/get/#custom-fields, example json shows 4 properties returned, however, PHP only returns 3.
JSON Example: "customFields" : [ { "id" : 8, "name" : "Account Type", "value" : "8518", "text" : "Free" }
PHP API "customFields" : [ { "id" : 8, "name" : "Account Type", "value" : "8518", }
Expected behavior return the text property
Steps to reproduce
Solution I have already written a PR to fix this: https://github.com/helpscout/helpscout-api-php/pull/286
Fixed in #286 🚀
Current behavior text property for Conversations/CustomField.php was never implemented. https://developer.helpscout.com/mailbox-api/endpoints/conversations/get/#custom-fields, example json shows 4 properties returned, however, PHP only returns 3.
JSON Example: "customFields" : [ { "id" : 8, "name" : "Account Type", "value" : "8518", "text" : "Free" }
PHP API "customFields" : [ { "id" : 8, "name" : "Account Type", "value" : "8518", }
Expected behavior return the text property
Steps to reproduce
Solution I have already written a PR to fix this: https://github.com/helpscout/helpscout-api-php/pull/286