Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Choose the endpoint you want to use.

  • Add a X-Base-URLUrl header to your request containing the base URL of your Atlassian site (e.g. https://example.atlassian.net/wiki for a Confluence instance, https://example.atlassian.net for a Jira instance).

  • Add a X-Api-Key header to your request containing your personal access token.

  • Send the request:

Code Block
languagebash
curl -L 'https://confluence.requirementyogi.com/rest/search?query=&limit=200&offset=0&spaceKey=SPACE' \
-H 'X-Base-URLUrl: https://example.atlassian.net/wiki' \
-H 'X-Api-Key: YOUR_TOKEN'

...