Jira Make API Call scenario

Hi everyone!
Does anyone know how to use the Jira scenario “Make an API Call”?

I’m able to access Jira tickets using “Get Issue” or “Search Issue”, but I’m having trouble retrieving the Release Notes. I know they’re stored in a custom field array (specifically customfield_12387), but I’m not sure which URL to use to access them.

I tried those endpoint:

https://{my-company}.atlassian.net/rest/api/3/customFieldOption/{My ID}

https://{my-company}.atlassian.net/rest/api/3/cf[{My ID}]

…but it didn’t work.

Has anyone successfully pulled data from a custom field like this? Any guidance would be appreciated!

I always get this error, looks like it can’t connect

Hello @Juan_Carlos_Fierro_C , this basically means that the API endpoint (request URL) you are querying for data doesn’t exist.

You can check their API documentation and confirm the supported API endpoints.

Oh no, the URL exists, I’m pretty sure because it works with an HTTP GET api call: the url is: https://{my-company}.atlassian.net/rest/api/latest/customFieldOption/11994

The problem is with connector; in order to connect I need a “Basic Auth” like I used in HTTP call. (username is my email and password is my API token)

Any idea how I can get the “Client ID” and “Client secret” ?
What that means?

Any idea or comment that put me in the rigth direction is appreceiated :slight_smile:

Does anybody have used a SmartSheet module “Make an Api Call” before?
Could someone explain me what did you do to make that module work?