Hello, I need to delete some organizations from the list of organizations of a particular project
If possible I will user api rest, but with the code I read from
https:///developer.atlassian.com/cloud/jira/service-desk/rest/api-group-organization/#api-rest-servicedeskapi-Servicedesk-servicedeskid-organization-delete
under the voice Remove Organization the answer gets an error with code 415
What can I do?
Is there an updated guide of your rest api?
thanks
Nicole
The HTTP 415 error is likely the result of a missing Content Type header. Since the endpoint requires the organization id to be passed as part of the request payload, the Content Type header has to be passed. When this is not done, or an incorrect header is sent, a HTTP 415 error is returned.
Please ensure your request has the following header:
Content-Type: application/json
The above may need to be formatted to suit the application or code you are using to interact with the API.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.