# fsVarsGetEnvironmentVarId {{< callout context="note" title="NOTE" icon="outline/bulb" >}} Deprecated. Use `fsVarsGetEVarId` instead. {{< /callout >}} The **fsVarsGetEnvironmentVarId** function can be used to get the `FsEnvVarId` of a specific `EVar`.   ##### Syntax ``` wasm FsEnvVarId fsVarsGetEnvironmentVarId( const char* eVarName ); ```   ##### Parameters {{< table-wrapper >}} | Parameters | Description | |------------|-------------------------| | `eVarName` | The name of the `EVar`. | {{< /table-wrapper >}}   ##### Return Values The function returns the ID associated to the given name. If an error occurred, the function will return `FS_VAR_EVAR_NONE`.   ##### Example ``` wasm FsEnvVarId eVarId = fsVarsGetEnvironmentVarId("ZULU TIME"); ```