# 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
```

Production environment (US)
```
https://api.transmitsecurity.io/cis
```

Production environment (EU)
```
https://api.eu.transmitsecurity.io/cis
```

Production environment (CA)
```
https://api.ca.transmitsecurity.io/cis
```

Production environment (AU)
```
https://api.au.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

A token generated by a management application using the [token endpoint](/openapi/token.openapi/other/getaccesstoken). It provides access to all resources for the tenant and its apps

Type: oauth2

### ClientAccessToken

A token generated by an end-user application using the [token endpoint](/openapi/token.openapi/other/getaccesstoken). It provides access to resources and data on the tenant level or associated with the specific application (but not other apps in the tenant)

Type: oauth2

### OrgAdminAccessToken

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

Type: oauth2

## Download OpenAPI description

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

## Other

### Create resource

 - [POST /v1/resources](https://developer.transmitsecurity.com/openapi/user/resources.openapi/other/createresource.md): Create a resource in a specific tenant. Required permissions: resources:create, apps:create, [appId]:create.

### Get resources

 - [GET /v1/resources](https://developer.transmitsecurity.com/openapi/user/resources.openapi/other/getresources.md): Retrieve all resources created in the tenant. Required permissions: resources:list, resources:read.

### Get resource by URI

 - [GET /v1/resources/uri](https://developer.transmitsecurity.com/openapi/user/resources.openapi/other/getresourcesbyuri.md): Retrieve a specific resource by its URI. Required permissions: resources:read, apps:read, [appId]:read.

### Update resource

 - [PUT /v1/resources/{resourceId}](https://developer.transmitsecurity.com/openapi/user/resources.openapi/other/updateresource.md): Update a specific resource. Required permissions: resources:edit, apps:edit, [appId]:edit.

### Delete resource

 - [DELETE /v1/resources/{resourceId}](https://developer.transmitsecurity.com/openapi/user/resources.openapi/other/deleteresource.md): Delete a specific resource. Required permissions: resources:delete, apps:delete, [appId]:delete.

