Skip to content
Snippets Groups Projects
Commit 11bd0ed3 authored by Robert Habermann's avatar Robert Habermann
Browse files

add new names to README

parent 9cd691dc
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,12 @@ u'Welcome to OTRS!'
>>> my_article = Article({"Subject": "Subj", "Body": "New Body"})
>>> client.ticket_update(1, article=my_article)
True
```
Get Articles and Attachments
```
>>> client.ticket_get_by_id(1, articles=1, attachments=1) # include Articles and Attachments
>>> my_ticket = client.result_list_ticket_get[0]
......@@ -46,6 +51,15 @@ True
```
## Useful result data
* client.result_list_ticket_get (*list*) - list of ticket_get results
* client.result_list_ticket_search (*list*) - list of ticket_search results
* client.result_json (*dict*) - full result set as dict
* client.result_error (*True* or *False*)
* client.result_status_code (HTTP Result Code) - usually 200
## Tips
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment