Skip to content

Tag: api

Get position of Jira ticket within swimlane

I’m using the Atlassian REST API to fetch data regarding Jira tickets. PHP code (snippet): How do I get the current position of a ticket within its column/swimlane of the kanban board? Answer Sort the tickets by Rank. Ideally using ORDER BY Rank ASC in your JQL. This should return your issues in the ord…

How to call .net web service using CUrl PHP?

I have .net web service which i need to call using CUrl in php. Can anybody tell me how to achieve this? Below is my code which is not working and throwing Server Error. Thanks in advance Please see below error for more information: Answer I have used nusoap libraries to call the .net webservices. Check below…