Hello everyone,
I'm trying to retrieve the value of a custom field via the REST API, but the API always returns the following information:
"customfield_10922": [
{
"workspaceId": "field-workspace-id-hash",
"id": "field-id-hash",
"objectId": "field-id"
}
]
I would like to get the actual value for this field, but I can't seem to do so using the Jira REST API. Can anyone help me with this?
Hello everyone,
I was able to get the custom_field value by adding the following parameter to the request:
"expand": "names,customfield_10922.cmdb.label"
The API response returned the following information:
"objectAttributeValues": [
{
"value": "Todos",
"displayValue": "Todos",
"searchValue": "Todos"
}
]
I leave this information here in case anyone is experiencing the same problem.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.