Could you please some one provide complete steps to create folio with all the custom fields, Any example would be help full, I am try to do something like that:
folio_details_string = {"startDate": "2019-01-01", "endDate": "2019-01-01", "description":"First AutoFolio", "isSynchronizedWithTempoBilledHours": false, "currencyCode": "DOLLOR", "savedFilterId": "12345", "name": "AutoFolio", "withRevenue": true, "owner": "Amit Kumar Pandey", "contingency": 0, "tolerance": 0, "isSynchronizedWithWorkLogs": true, "hoursPerDay": 8}
jsonparams = {}
jsonparams["fields"] = folio_details_string
response = session_request.put(alm_url+"/rest/folio/1.0/api/folio/", data=json.dumps(jsonparams))
Hi!
Please, have a look doc here
http://developer.tempo.io/doc/folio/api/rest/latest/
If you want you can see here some example: https://github.com/atlassian-api/atlassian-python-api/blob/master/examples/jira-create-issue.py
Cheers,
Gonchik Tsymzhitov
Thanks for response, The example is for creating Jira Issue Not for creating new Folio, Anyway I am now able to create folio with all the custom fields, but I wonder if I can add Tempo team to folio by REST API.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Amit,
can you please check the API you are using as ass Budget APIs use http://{JIRA_BASE_URL}/rest/tempo-planning/1/api (see also the documentation link provided by Gonchik).
In your case, you will need to use:
..alm_url+"/rest/tempo-planning/1.0/api/folio/ ...
Regards,
Susanne Götz
Tempo team
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm trying to change the owner of an already exsisting Folio using API.
Do you happen to know if it is possible?
thank you in advance, Pas
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.