> ## Documentation Index
> Fetch the complete documentation index at: https://docs.galileo.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# SessionCreateRequest

***

# Type Alias: SessionCreateRequest

```ts theme={null}
type SessionCreateRequest = object;
```

Defined in: [src/types/new-api.types.ts](https://github.com/rungalileo/galileo-js/blob/main/src/types/new-api.types.ts)

SessionCreateRequest

## Properties

### clientVersion?

```ts theme={null}
optional clientVersion: string | null;
```

Defined in: [src/types/new-api.types.ts](https://github.com/rungalileo/galileo-js/blob/main/src/types/new-api.types.ts)

Client Version

***

### experimentId?

```ts theme={null}
optional experimentId: string | null;
```

Defined in: [src/types/new-api.types.ts](https://github.com/rungalileo/galileo-js/blob/main/src/types/new-api.types.ts)

Experiment Id

Experiment id associated with the traces.

***

### externalId?

```ts theme={null}
optional externalId: string | null;
```

Defined in: [src/types/new-api.types.ts](https://github.com/rungalileo/galileo-js/blob/main/src/types/new-api.types.ts)

External Id

External id of the session.

***

### loggingMethod?

```ts theme={null}
optional loggingMethod: LoggingMethod;
```

Defined in: [src/types/new-api.types.ts](https://github.com/rungalileo/galileo-js/blob/main/src/types/new-api.types.ts)

***

### logStreamId?

```ts theme={null}
optional logStreamId: string | null;
```

Defined in: [src/types/new-api.types.ts](https://github.com/rungalileo/galileo-js/blob/main/src/types/new-api.types.ts)

Log Stream Id

Log stream id associated with the traces.

***

### metricsTestingId?

```ts theme={null}
optional metricsTestingId: string | null;
```

Defined in: [src/types/new-api.types.ts](https://github.com/rungalileo/galileo-js/blob/main/src/types/new-api.types.ts)

Metrics Testing Id

Metrics testing id associated with the traces.

***

### name?

```ts theme={null}
optional name: string | null;
```

Defined in: [src/types/new-api.types.ts](https://github.com/rungalileo/galileo-js/blob/main/src/types/new-api.types.ts)

Name

Name of the session.

***

### previousSessionId?

```ts theme={null}
optional previousSessionId: string | null;
```

Defined in: [src/types/new-api.types.ts](https://github.com/rungalileo/galileo-js/blob/main/src/types/new-api.types.ts)

Previous Session Id

Id of the previous session.

***

### reliable?

```ts theme={null}
optional reliable: boolean;
```

Defined in: [src/types/new-api.types.ts](https://github.com/rungalileo/galileo-js/blob/main/src/types/new-api.types.ts)

Reliable

Whether or not to use reliable logging. If set to False, the method will respond immediately before verifying that the traces have been successfully ingested, and no error message will be returned if ingestion fails. If set to True, the method will wait for the traces to be successfully ingested or return an error message if there is an ingestion failure.

***

### userMetadata?

```ts theme={null}
optional userMetadata:
  | {
[key: string]: string;
}
  | null;
```

Defined in: [src/types/new-api.types.ts](https://github.com/rungalileo/galileo-js/blob/main/src/types/new-api.types.ts)

User Metadata

User metadata for the session.
