> For the complete documentation index, see [llms.txt](https://hov-qa.gitbook.io/hov-qa-engineers/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hov-qa.gitbook.io/hov-qa-engineers/projects/identifi/api-testing.md).

# API Testing

**Creating new Environment**

<https://studio.apollographql.com/sandbox/explorer>

Server: <https://dev-api-next.identifi.com/graphql>

```
mutation CreateTestOrganization($input: CreateOrganizationSetupInput!) {
  createTestOrganization(input: $input) {
    organization {
      id
      name
    }
  }
}
```

Variable:

```
{
  "input": {
    "organization": {
      "name": "QA Team",
      "dailyReview": {
        "enable": true,
        "time": "9::30",
        "timezone": "Asia/Manila"
      },
      "members": [
        {
          "email": "mageke@robot-mail.com",
          "timezone": "Asia/Manila"
        }
      ]
    },
    "owner": {
      "email": "mavul@abyssmail.com",
      "name": "Yana Barlaan",
      "timezone": "Asia/Manila"
    }
  }
}
```
