# Resources

Manage your resources across your tenant. Once a resource is added to the relevant app, it can be specified in an authentication request in order to grant the user access to only this resource.


## Servers

Sandbox environment
```
https://api.sbx.transmitsecurity.io/cis
```

US production environment
```
https://api.transmitsecurity.io/cis
```

EU production environment
```
https://api.eu.transmitsecurity.io/cis
```

CA production environment
```
https://api.ca.transmitsecurity.io/cis
```

AU production environment
```
https://api.au.transmitsecurity.io/cis
```

JP production environment
```
https://api.gasne1-ts01.transmitsecurity.io/cis
```

## Security

### bearer

Type: http
Scheme: bearer
Bearer Format: JWT

### UserAccessToken

A token returned upon end-user authentication, which provides access to resources and data for the user and app for which it was generated

Type: http
Scheme: bearer
Bearer Format: JWT

### AdminAccessToken

[object Object]

Type: oauth2
Token URL: /oidc/token
Scopes:

### ClientAccessToken

[object Object]

Type: oauth2
Token URL: /oidc/token
Scopes:

### OrgAdminAccessToken

A token returned upon B2B authentication for a user that has the organizationAdmin or organizationCreator role.

Type: oauth2
Token URL: /oidc/token
Scopes:

## Download OpenAPI description

 - [Resources](https://developer.transmitsecurity.com/_bundle/openapi/user/resources.openapi.yaml)

 - [POST /v1/resources](https://developer.transmitsecurity.com/openapi/user/resources.openapi/other/createresource.md): Create a resource in a specific tenant. <br><br>**Required permissions**: `resources:create`, `apps:create`, `[appId]:create`.
 - [GET /v1/resources](https://developer.transmitsecurity.com/openapi/user/resources.openapi/other/getresources.md): Retrieve all resources created in the tenant. <br><br>**Required permissions**: `resources:list`, `resources:read`.
 - [GET /v1/resources/uri](https://developer.transmitsecurity.com/openapi/user/resources.openapi/other/getresourcesbyuri.md): Retrieve a specific resource by its URI. <br><br>**Required permissions**: `resources:read`, `apps:read`, `[appId]:read`.
 - [PUT /v1/resources/{resourceId}](https://developer.transmitsecurity.com/openapi/user/resources.openapi/other/updateresource.md): Update a specific resource. <br><br>**Required permissions**: `resources:edit`, `apps:edit`, `[appId]:edit`.
 - [DELETE /v1/resources/{resourceId}](https://developer.transmitsecurity.com/openapi/user/resources.openapi/other/deleteresource.md): Delete a specific resource. <br><br>**Required permissions**: `resources:delete`, `apps:delete`, `[appId]:delete`.
