API Get Keywords by Performance ID

Hi,

After searching through the forums, I couldn't find a reliable answer to this question.  I am trying to find an API call (or series of calls), be it SOAP or REST, which returns the Keywords assigned to a Performance when given a performance ID.

I know the REST API does not have full parity with the SOAP API currently, but I am comfortable using an intermediary solution in the meantime.  I am also aware there are a few calls which allow for a Keyword Filter, but that is not the solution, unless it involves using Keywords as the base controller for displaying performances, which doesn't sound very ingegrated or reasonable.

Any suggestions are welcome.

Thanks!

Parents Reply
  • Because the Request is not called in the URI, would this be an example of the correct URI call to invoke a POST?

    BTW, I am using some of the code from the PHP API Wrapper.

    $args = array(
    	'request_method'	=>	'POST',
    	'ProcedureId'		=>	'56',
    	'Parameters'		=>	'@sessionKey=123456&@perf_id=5994'
    );
    
    $var = tessitura_rest_call('Custom/Execute', $args);

     

    Edit:

    Got the call working in Postman!

    However, something wrong on my PHP code, getting a error in response.

    Unexpected end of file.

     

    I'm thinking something wrong with the JSON encoding in curl, will post an update.



    [edited by: Cody Palmer at 12:33 PM (GMT -6) on 13 Sep 2017]
Children