admin管理员组

文章数量:1122832

I tried to add existing TestFlight user to a beta group, by calling an HTTP POST request to :


And having this as body:

{"data": [
        {
            "id": "BETA-GROUP-ID",
            "type": "betaGroups"
        }
    ]}

But I receive this error:

{
    "errors": [
        {
            "id": "....",
            "status": "409",
            "code": "STATE_ERROR",
            "title": "The request cannot be fulfilled because of the state of another resource.",
            "detail": "Tester(s) cannot be assigned"
        }
    ]
}

What is 409 error here? I deleted user from group before calling this.

本文标签: iosError while trying to add TestFlight user to a beta group using AppStoreConnect APIStack Overflow