# Streamtime

Streamtime is project management software for creative businesses including design studios, agencies, and architects. It offers job tracking, time tracking, scheduling, quoting, invoicing, and team collaboration tools.

- **Category:** project management
- **Auth:** API_KEY
- **Composio Managed App Available?** N/A
- **Tools:** 4
- **Triggers:** 0
- **Slug:** `STREAMTIME`
- **Version:** 20260211_00

## Tools

### List Roles

**Slug:** `STREAMTIME_LIST_ROLES`

Retrieves all roles in the Streamtime organization. No parameters required. Returns role ID, name, and active status. Use this to discover available roles before assigning them to users or when you need to reference role IDs.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Organisation Details

**Slug:** `STREAMTIME_ORGANISATION_GET_ORGANISATION`

Tool to retrieve your organisation’s details. Use after confirming your authentication to ensure you are operating within the correct organisation context.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Role

**Slug:** `STREAMTIME_ROLES_GET_ROLE`

Tool to retrieve a role by ID. Use when you need to fetch details of a specific role after confirming its ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `role_id` | string | Yes | The unique identifier for the role to retrieve. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Saved Segments for User

**Slug:** `STREAMTIME_USERS_LIST_SAVED_SEGMENTS`

Retrieves all saved segments for a specific user. Saved segments are custom filters or views that a user has created and saved in Streamtime. Use this when you need to see what segment filters a user has saved. Requires the user's numeric ID (e.g., from GET /users endpoint).

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `user_id` | string | Yes | The user's unique numeric identifier. Can be obtained from the GET /users endpoint. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |
