We moved from self hosted to Atlassian hosted Confuence and I can't figure out how to update things using the REST api

Pat Corwin April 22, 2015

I'm using python + requests, have read https://docs.atlassian.com/atlassian-confluence/REST/latest/ and https://developer.atlassian.com/confdev/confluence-rest-api/confluence-rest-api-examples but can't get it working.

I am new to REST but have been doing python for years so maybe there is something easy I'm missing.  When locally hosted, the provided python example worked simply substituting our domain.  Now I've substituted for the new domain but just get 404s back.  This is extremely frustrating.

3 answers

1 accepted

1 vote
Answer accepted
Joe Clark
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
April 22, 2015

Hi @Pat Corwin,

Make sure you've got the REST API URLs correct - They will be of the form "https://<yourdomain>.atlassian.net/wiki/rest/api/latest/<method>"

People often forget the "/wiki" part when using the APIs in the Atlassian Cloud.

Cheers,
Joe. 

 

 

Pat Corwin April 22, 2015

Thanks, "/wiki/" was totally it. It might be helpful to note that in either of the pages I linked to in the question. I didn't even notice that change and it appears others don't either.

0 votes
cgauterio
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
April 22, 2015

Hi Pat,

Please make sure your domain is set to https://instance.atlassian.net/wiki and not just https://instance.atlassian.net.

If that doesn't help, please clarify a little on what error you are receiving, and which call you are using.

I hope this helps.

Cheers,

Clarissa.

0 votes
rsperafico
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
April 22, 2015

Hello Pat,

Thank you for your question.

As @Joe Clark [Atlassian] has mentioned, there are things to be considered, most likely the URL used and the context path (wiki).

Please, find below an example in Python to the /rest/api/content [GET]:

# ===============
# get content
# ===============
import requests
import json

# [CONFLUENCE-BASE-URL], i.e.: https://&lt;yourdomain&gt;.atlassian.net/wiki
url = '[CONFLUENCE-BASE-URL]/rest/api/content'
headers = {'Content-Type': 'application/json'}

# get content page
# [USERNAME], i.e.: myuser
# [PASSWORD], i.e.: passABC
r = requests.get(url, auth=('[USERNAME]', '[PASSWORD]'), headers=headers)
print(r.status_code)
print(r.text)
#print(r.content)

If you find this answer useful, I would kindly ask you to accept it so the same will be visible to others who might be facing the same issue you have inquired.

Thank you for your understanding.

Kind regards,
Rafael P. Sperafico
Atlassian Support

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events