I'm trying to create an automation that updates an asset object.
Using the rest API was mentioned on this page somewhere.
using postman to test to.
https://api.atlassian.com/jsm/assets/workspace/v1/object/{{ObjectList.key}}
with the next payload:
{ "attributes": [ { "id": "76270", "objectAttributeValues": [ { "Value": "8" } ] } ] }
I do get an '200 ok' response but the object is not updated.
Does anyone can inspire me please?
{
"attributes": [
{
"objectTypeAttributeId": "48",
"objectAttributeValues": [
{
"value": "8"
}
]
}
],
"objectTypeId": "37"
}
seems to be the correct payload
reference: The Assets REST API (atlassian.com)
Hello Dears,
I hope this message finds you well.
I feel like there is something that I don't get, since I have the same issue described in the question.
I have a field in my object that has the type (Default) and Type Value (Text).
I'm using the below Request:
URL:
https://api.atlassian.com/jsm/assets/workspace/{{WSID}}/v1/object/[OBJECT_ID]
Body:
{
"objectTypeId": "7",
"attributes": [
{
"objectTypeAttributeId": "103",
"objectAttributeValues": [
{
"value": "This field was edited using REST API."
}
]
}
]
}
and I also get 200 OK Response Code, but the returned edited object is still the same as it was before, no changes on the UI either.
I also tried sending the request without the request body and it behaved the same.
If anyone was able to figure it out, can you please advise regarding your resolution?
I'll keep trying to figure it out, and if I crack it, I'll share my finding.
Thanks,
Qusai Atoon.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Join us to learn how your team can stay fully engaged in meetings without worrying about writing everything down. Dive into Loom's newest feature, Loom AI for meetings, which automatically takes notes and tracks action items.
Register today!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.