Forum Discussion

Borgert's avatar
Borgert
New Contributor
3 years ago
Solved

Cannot create new execution using Zephyr Squad Server REST API

I am currently trying to create a new execution for a test using this example from the API: https://getzephyr.docs.apiary.io/#reference/executionresource/get-defect-list/create-new-execution   How...
  • Borgert's avatar
    3 years ago

    I figured it out.

     

    For those curious, then the problem was that I applied the example url: 

    http://localhost:2990/jira/rest/zapi/latest/execution
     

    - and replaced localhost:2990 with the hostname of our organization. However, the /jira/ would apparently also have to be deleted.

     

     

    So the API call was instead made to:

    https://jira.hostname.com/rest/zapi/latest/execution.

     

    - which worked perfectly.

     

    Maybe I was just stupid, smh.