Hello, I have problem with create a new ticket by pyton script by API.
When I set in osticket priority for new ticket by required and try create new ticket by python script by API. I take error message "Unable to create new ticket: validation errors:
22: Priority is a required field".
But if priority is set by optional everyting it's fine.

Here is some my debug outputs.

This is python scripts:

/usr/lib/zabbix/userscripts/raiseticket.py --issuesummary "Test create tickets" --issuedetails "Test create ticket by API" --email gc.testing@gmail.com --name "TEST osticket" --issuepriority "Emergency" --phone 123456789

This is output string from scipt

('http://192.168.13.134/osticket/api/http.php/tickets.json', '{"topicId": 1, "name": "TEST osticket", "priority": "Emergency", "phone": "123456789", "message": "Test create ticket by API", "email": "gc.testing@gmail.com", "subject": "Test create tickets"}', {'X-API-Key': 'D80AFAC780EA882F876550F86175B9E9'})

This is read variable from osticket class.ticket.php

class.ticket.php code part
static function create($vars, &$errors, $origin, $autorespond=true,
$alertstaff=true) {
global $ost, $cfg, $thisclient, $thisstaff;
print("In CLASS Ticket\n"); #MH
print_r($vars); #MH
..

In CLASS Ticket
Array
(
[topicId] => 1
[name] => TEST osticket
[priority] => Emergency
[phone] => 123456789
[message] => TextThreadEntryBody Object
(
[body] => Test create ticket by API
[type] => text
[stripped_images] => Array
(
)

        [embedded_images] => Array
            (
            )

        [options] => Array
            (
                [strip-embedded] => 1
            )

    )

[email] => gc.testing@gmail.com
[subject] => Test create tickets
[source] => API

)

This is output.

Unable to create new ticket: validation errors:
22: Priorita jjj is a required field

Where is a problem or what I do wrong.
Thank

Marcel

    mhustak [priority] => Emergency

    Try changing this to
    [priority] => 4

    by default
    1 is low
    2 is normal
    3 is high
    4 is emergency

    If you change your priority levels that would obv be different. The data is in ost_ticket_priority.

    Thanks it's works.
    Big thanks one more.

    Very welcome. Should I close this thread?

    Oh yes sorry of course you can close this.

    Write a Reply...