Can't create new app version on App Store Connect

It's not possible to create a new version for any App Store Connect app.

To reproduce, I navigate to my app and click the (+) button to create a new version number. I type in a version number, and click "Create."

It fails with an error, "An error has occurred. Try again later."

When I view it in the Network tab of the Web Inspector, it shows that there's a 500 error.

{
	"errors": [{
		"status": "500",
		"code": "UNEXPECTED_ERROR",
		"title": "An unexpected error occurred.",
		"detail": "An unexpected error occurred on the server side. If this issue continues, contact us at https://developer.apple.com/contact/."
	}]
}

The same error occurs when I attempt to create an app store version using the App Store Connect API.

Same issue.

Same here, but with http status 403:

{
  "errors" : [ {
    "status" : "403",
    "code" : "FORBIDDEN_ERROR",
    "title" : "The given operation is not allowed",
    "detail" : "The resource 'appStoreVersions' does not allow 'GET_COLLECTION'. Allowed operations are: CREATE, DELETE, GET_INSTANCE, UPDATE"
  } ]
}

Same issue right now

{
  "errors" : [ {
    "status" : "403",
    "code" : "FORBIDDEN_ERROR",
    "title" : "The given operation is not allowed",
    "detail" : "The resource 'appStoreVersions' does not allow 'GET_COLLECTION'. Allowed operations are: CREATE, DELETE, GET_INSTANCE, UPDATE"
  } ]
}

Same here, same payload.

Same for me. However, creating a new version via the fastlane cli does work.

You don't need a fastlane setup, installing it and follow the steps works fine.

# I used:
fastlane deliver --app_version 2.0.2
Can't create new app version on App Store Connect
 
 
Q