We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CustomField
resourceSubtype
Summary No field in CustomField captures the people_value property given by custom field api endpoints. Example:
people_value
Example request
curl -X GET https://app.asana.com/api/1.0/tasks/12345?opt_fields=custom_fields ... header stuff ...
Example response
{ "data": { "gid": "12345", "custom_fields": [ { "gid": "...", "resource_subtype": "people", "resource_type": "custom_field", "people_value": [ { "gid": "...", "resource_type": "user" }, { "gid": "...", "resource_type": "user" } ], "type": "people" } ] } }
Relevant part of the response
"people_value": [ { "gid": "...", "resource_type": "user" }, { "gid": "...", "resource_type": "user" } ]
User
Changes to CustomField class (Java) Must implement a field to serialize the people_value object within CustomField.
@SerializedName("people_value") public Collection<User> peopleValue;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue outlined
Summary
No field in
CustomField
captures thepeople_value
property given by custom field api endpoints. Example:Example request
Example response
Relevant part of the response
people_value
is an array ofUser
resources.Proposed solution
Changes to
CustomField
class (Java)Must implement a field to serialize the
people_value
object withinCustomField
.The text was updated successfully, but these errors were encountered: