0

When I try to delete an existing user from TestFlight, I receive http error 204 (no content), what does this mean? I am sure my-user-id is existing in TestFlight, I got it via API.

curl --location --request DELETE 'https://api.appstoreconnect.apple.com/v1/betaTesters/{my-user-id}' \
--header 'Authorization: Bearer my-token'
3
  • an HTTP status code 204 is generally a success indicator for DELETE operations. If you want to verify that the user has been deleted, make an API request to retrieve the list of users or specifically query for the user to ensure their absence in the list. Commented Sep 10, 2023 at 7:58
  • Thanks, but the problem is user is not deleted! Commented Sep 10, 2023 at 8:16
  • i flag to display the response headers, ( including the status code.) E.g. curl -i --location --request DELETE 'api.appstoreconnect.apple.com/v1/betaTesters{my-user-id}' \ --header 'Authorization: Bearer my-token'. Is ther any more info Commented Sep 10, 2023 at 8:28

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.