The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to get variable uuid?

Mohamad Abuzaid
October 2, 2020

I can't get the repository variables uuid...
How to get it?

2 answers

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

2 votes
Answer accepted
Mohamad Abuzaid
October 3, 2020

Found it :)...

First: in order to get the uuid of your repository variables you can call this:

curl --user "$USER_NAME":"$PASSWORD" 'https://api.bitbucket.org/2.0/repositories/{username}/{repo_slug}/pipelines_config/variables/' -H 'Content-Type: application/json'

where:
- USER_NAME -> your user name from your profile

- PASSWORD -> You can create an App Password from here to avoid using your own password

- username & repo_slug -> from your repository url

* This will return all your variables with their uuid

Second: Pick the uuid you want and use this to update it value:

curl -vX PUT -u "$USER_NAME":"$PASSWORD" --url 'https://api.bitbucket.org/2.0/repositories/{username}/{repo_slug}/pipelines_config/variables/%7Bvariable_uuid%7D' -H 'Content-Type:application/json' -d "{\"value\":\"{new_value}\", \"key\":\"{variable_name}\"}"

Note: Keep the %7B & %7D in the 'variable_uuid' section in the url, as they will be decoded to { & } which are required for the request to work

0 votes
Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
October 2, 2020

It's in the settings, but I'm wondering why you want it.  Of what use is it?

Mohamad Abuzaid
October 2, 2020

Can't see it.... I want to update the variable from api call using curl

Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
October 2, 2020

You don't need the uuid to use curl against a repository.

Could you explain what you're really trying to do?

Mohamad Abuzaid
October 3, 2020

I created a repository variable for my workspace pipeline, and I want to update this variable using a script in one of the pipeline steps. But in order to change a repository variable I need to know its uuid first

Like Brannon likes this
TAGS
AUG Leaders

Atlassian Community Events