

# Prerequisites for developing third-party applications for Amazon Connect Agent Workspace
Prerequisites for 3P apps

To develop and test an application for use in Amazon Connect agent workspace, you must have the following:
+ An Amazon Connect instance
+ An IAM user that has the proper permissions for creating an application and associating it with the instance. For more information on the required user permissions, see the [IAM role required for creating applications in Amazon Connect Agent Workspace](appendix-role-required.md)
+ An Amazon Connect user in that instance that has permissions to update security profiles

**Topics**
+ [IAM role required](appendix-role-required.md)

# IAM role required for creating applications in Amazon Connect Agent Workspace
IAM role required

On top of the `AmazonConnect_FullAccess` IAM policy, users need the following IAM permissions for creating an app and associating it with an Amazon Connect instance.

------
#### [ JSON ]

****  

```
{
    "Version":"2012-10-17",		 	 	 
    "Statement": [
        {
            "Action": [
                "app-integrations:CreateApplication",
                "app-integrations:GetApplication",
                "iam:GetRolePolicy",
                "iam:PutRolePolicy",
                "iam:DeleteRolePolicy"
            ],
            "Resource": "arn:aws:app-integrations:us-east-1:111122223333:application/*",
            "Effect": "Allow"
        }
    ]
}
```

------