Search Results for

    Show / Hide Table of Contents

    Class AIControllerApi

    Represents a collection of functions to interact with the API endpoints

    Inheritance
    object
    AIControllerApi
    Implements
    IAIControllerApi
    IAIControllerApiSync
    IAIControllerApiAsync
    IApiAccessor
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: mailslurp.Api
    Assembly: mailslurp.dll
    Syntax
    public class AIControllerApi : IAIControllerApi, IAIControllerApiSync, IAIControllerApiAsync, IApiAccessor

    Constructors

    View Source

    AIControllerApi()

    Initializes a new instance of the AIControllerApi class.

    Declaration
    public AIControllerApi()
    View Source

    AIControllerApi(string)

    Initializes a new instance of the AIControllerApi class.

    Declaration
    public AIControllerApi(string basePath)
    Parameters
    Type Name Description
    string basePath
    View Source

    AIControllerApi(Configuration)

    Initializes a new instance of the AIControllerApi class using Configuration object

    Declaration
    public AIControllerApi(Configuration configuration)
    Parameters
    Type Name Description
    Configuration configuration

    An instance of Configuration

    View Source

    AIControllerApi(ISynchronousClient, IAsynchronousClient, IReadableConfiguration)

    Initializes a new instance of the AIControllerApi class using a Configuration object and client instance.

    Declaration
    public AIControllerApi(ISynchronousClient client, IAsynchronousClient asyncClient, IReadableConfiguration configuration)
    Parameters
    Type Name Description
    ISynchronousClient client

    The client interface for synchronous API access.

    IAsynchronousClient asyncClient

    The client interface for asynchronous API access.

    IReadableConfiguration configuration

    The configuration object.

    Properties

    View Source

    AsynchronousClient

    The client for accessing this underlying API asynchronously.

    Declaration
    public IAsynchronousClient AsynchronousClient { get; set; }
    Property Value
    Type Description
    IAsynchronousClient
    View Source

    Client

    The client for accessing this underlying API synchronously.

    Declaration
    public ISynchronousClient Client { get; set; }
    Property Value
    Type Description
    ISynchronousClient
    View Source

    Configuration

    Gets or sets the configuration object

    Declaration
    public IReadableConfiguration Configuration { get; set; }
    Property Value
    Type Description
    IReadableConfiguration

    An instance of the Configuration

    View Source

    ExceptionFactory

    Provides a factory method hook for the creation of exceptions.

    Declaration
    public ExceptionFactory ExceptionFactory { get; set; }
    Property Value
    Type Description
    ExceptionFactory

    Methods

    View Source

    CreateTransformer(AITransformCreateOptions, int)

    Create a transformer for reuse in automations Save an AI transform instructions and schema for use with webhooks and automations

    Declaration
    public AITransformDto CreateTransformer(AITransformCreateOptions aITransformCreateOptions, int operationIndex = 0)
    Parameters
    Type Name Description
    AITransformCreateOptions aITransformCreateOptions
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    AITransformDto

    AITransformDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    CreateTransformerAsync(AITransformCreateOptions, int, CancellationToken)

    Create a transformer for reuse in automations Save an AI transform instructions and schema for use with webhooks and automations

    Declaration
    public Task<AITransformDto> CreateTransformerAsync(AITransformCreateOptions aITransformCreateOptions, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    AITransformCreateOptions aITransformCreateOptions
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<AITransformDto>

    Task of AITransformDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    CreateTransformerMappings(CreateAITransformerMappingOptions, int)

    Create transformer mapping Create AI transformer mappings to other entities

    Declaration
    public AITransformMappingDto CreateTransformerMappings(CreateAITransformerMappingOptions createAITransformerMappingOptions, int operationIndex = 0)
    Parameters
    Type Name Description
    CreateAITransformerMappingOptions createAITransformerMappingOptions
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    AITransformMappingDto

    AITransformMappingDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    CreateTransformerMappingsAsync(CreateAITransformerMappingOptions, int, CancellationToken)

    Create transformer mapping Create AI transformer mappings to other entities

    Declaration
    public Task<AITransformMappingDto> CreateTransformerMappingsAsync(CreateAITransformerMappingOptions createAITransformerMappingOptions, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    CreateAITransformerMappingOptions createAITransformerMappingOptions
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<AITransformMappingDto>

    Task of AITransformMappingDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    CreateTransformerMappingsWithHttpInfo(CreateAITransformerMappingOptions, int)

    Create transformer mapping Create AI transformer mappings to other entities

    Declaration
    public ApiResponse<AITransformMappingDto> CreateTransformerMappingsWithHttpInfo(CreateAITransformerMappingOptions createAITransformerMappingOptions, int operationIndex = 0)
    Parameters
    Type Name Description
    CreateAITransformerMappingOptions createAITransformerMappingOptions
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<AITransformMappingDto>

    ApiResponse of AITransformMappingDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    CreateTransformerMappingsWithHttpInfoAsync(CreateAITransformerMappingOptions, int, CancellationToken)

    Create transformer mapping Create AI transformer mappings to other entities

    Declaration
    public Task<ApiResponse<AITransformMappingDto>> CreateTransformerMappingsWithHttpInfoAsync(CreateAITransformerMappingOptions createAITransformerMappingOptions, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    CreateAITransformerMappingOptions createAITransformerMappingOptions
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<AITransformMappingDto>>

    Task of ApiResponse (AITransformMappingDto)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    CreateTransformerWithHttpInfo(AITransformCreateOptions, int)

    Create a transformer for reuse in automations Save an AI transform instructions and schema for use with webhooks and automations

    Declaration
    public ApiResponse<AITransformDto> CreateTransformerWithHttpInfo(AITransformCreateOptions aITransformCreateOptions, int operationIndex = 0)
    Parameters
    Type Name Description
    AITransformCreateOptions aITransformCreateOptions
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<AITransformDto>

    ApiResponse of AITransformDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    CreateTransformerWithHttpInfoAsync(AITransformCreateOptions, int, CancellationToken)

    Create a transformer for reuse in automations Save an AI transform instructions and schema for use with webhooks and automations

    Declaration
    public Task<ApiResponse<AITransformDto>> CreateTransformerWithHttpInfoAsync(AITransformCreateOptions aITransformCreateOptions, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    AITransformCreateOptions aITransformCreateOptions
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<AITransformDto>>

    Task of ApiResponse (AITransformDto)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    DeleteAllTransformerMappings(int)

    Delete all transformer mapping Delete all AI transformer mappings

    Declaration
    public void DeleteAllTransformerMappings(int operationIndex = 0)
    Parameters
    Type Name Description
    int operationIndex

    Index associated with the operation.

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    DeleteAllTransformerMappingsAsync(int, CancellationToken)

    Delete all transformer mapping Delete all AI transformer mappings

    Declaration
    public Task DeleteAllTransformerMappingsAsync(int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task

    Task of void

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    DeleteAllTransformerMappingsWithHttpInfo(int)

    Delete all transformer mapping Delete all AI transformer mappings

    Declaration
    public ApiResponse<object> DeleteAllTransformerMappingsWithHttpInfo(int operationIndex = 0)
    Parameters
    Type Name Description
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<object>

    ApiResponse of Object(void)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    DeleteAllTransformerMappingsWithHttpInfoAsync(int, CancellationToken)

    Delete all transformer mapping Delete all AI transformer mappings

    Declaration
    public Task<ApiResponse<object>> DeleteAllTransformerMappingsWithHttpInfoAsync(int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<object>>

    Task of ApiResponse

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    DeleteTransformer(Guid, int)

    Delete a transformer Delete an AI transformer and schemas by ID

    Declaration
    public void DeleteTransformer(Guid id, int operationIndex = 0)
    Parameters
    Type Name Description
    Guid id
    int operationIndex

    Index associated with the operation.

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    DeleteTransformerAsync(Guid, int, CancellationToken)

    Delete a transformer Delete an AI transformer and schemas by ID

    Declaration
    public Task DeleteTransformerAsync(Guid id, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    Guid id
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task

    Task of void

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    DeleteTransformerMapping(Guid, int)

    Delete transformer mapping Delete an AI transformer mapping

    Declaration
    public void DeleteTransformerMapping(Guid id, int operationIndex = 0)
    Parameters
    Type Name Description
    Guid id

    ID of transform mapping

    int operationIndex

    Index associated with the operation.

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    DeleteTransformerMappingAsync(Guid, int, CancellationToken)

    Delete transformer mapping Delete an AI transformer mapping

    Declaration
    public Task DeleteTransformerMappingAsync(Guid id, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    Guid id

    ID of transform mapping

    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task

    Task of void

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    DeleteTransformerMappingWithHttpInfo(Guid, int)

    Delete transformer mapping Delete an AI transformer mapping

    Declaration
    public ApiResponse<object> DeleteTransformerMappingWithHttpInfo(Guid id, int operationIndex = 0)
    Parameters
    Type Name Description
    Guid id

    ID of transform mapping

    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<object>

    ApiResponse of Object(void)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    DeleteTransformerMappingWithHttpInfoAsync(Guid, int, CancellationToken)

    Delete transformer mapping Delete an AI transformer mapping

    Declaration
    public Task<ApiResponse<object>> DeleteTransformerMappingWithHttpInfoAsync(Guid id, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    Guid id

    ID of transform mapping

    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<object>>

    Task of ApiResponse

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    DeleteTransformerWithHttpInfo(Guid, int)

    Delete a transformer Delete an AI transformer and schemas by ID

    Declaration
    public ApiResponse<object> DeleteTransformerWithHttpInfo(Guid id, int operationIndex = 0)
    Parameters
    Type Name Description
    Guid id
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<object>

    ApiResponse of Object(void)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    DeleteTransformerWithHttpInfoAsync(Guid, int, CancellationToken)

    Delete a transformer Delete an AI transformer and schemas by ID

    Declaration
    public Task<ApiResponse<object>> DeleteTransformerWithHttpInfoAsync(Guid id, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    Guid id
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<object>>

    Task of ApiResponse

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    DeleteTransformers(int)

    Delete all transformers Delete all AI transformers and schemas

    Declaration
    public void DeleteTransformers(int operationIndex = 0)
    Parameters
    Type Name Description
    int operationIndex

    Index associated with the operation.

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    DeleteTransformersAsync(int, CancellationToken)

    Delete all transformers Delete all AI transformers and schemas

    Declaration
    public Task DeleteTransformersAsync(int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task

    Task of void

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    DeleteTransformersWithHttpInfo(int)

    Delete all transformers Delete all AI transformers and schemas

    Declaration
    public ApiResponse<object> DeleteTransformersWithHttpInfo(int operationIndex = 0)
    Parameters
    Type Name Description
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<object>

    ApiResponse of Object(void)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    DeleteTransformersWithHttpInfoAsync(int, CancellationToken)

    Delete all transformers Delete all AI transformers and schemas

    Declaration
    public Task<ApiResponse<object>> DeleteTransformersWithHttpInfoAsync(int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<object>>

    Task of ApiResponse

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    ExportTransformerResults(ExportTransformerOptions, int)

    Export transformer results Export AI transformer results in formats such as Excel, CSV, XML etc.

    Declaration
    public ExportTransformerResponse ExportTransformerResults(ExportTransformerOptions exportTransformerOptions, int operationIndex = 0)
    Parameters
    Type Name Description
    ExportTransformerOptions exportTransformerOptions
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ExportTransformerResponse

    ExportTransformerResponse

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    ExportTransformerResultsAsync(ExportTransformerOptions, int, CancellationToken)

    Export transformer results Export AI transformer results in formats such as Excel, CSV, XML etc.

    Declaration
    public Task<ExportTransformerResponse> ExportTransformerResultsAsync(ExportTransformerOptions exportTransformerOptions, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    ExportTransformerOptions exportTransformerOptions
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ExportTransformerResponse>

    Task of ExportTransformerResponse

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    ExportTransformerResultsWithHttpInfo(ExportTransformerOptions, int)

    Export transformer results Export AI transformer results in formats such as Excel, CSV, XML etc.

    Declaration
    public ApiResponse<ExportTransformerResponse> ExportTransformerResultsWithHttpInfo(ExportTransformerOptions exportTransformerOptions, int operationIndex = 0)
    Parameters
    Type Name Description
    ExportTransformerOptions exportTransformerOptions
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<ExportTransformerResponse>

    ApiResponse of ExportTransformerResponse

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    ExportTransformerResultsWithHttpInfoAsync(ExportTransformerOptions, int, CancellationToken)

    Export transformer results Export AI transformer results in formats such as Excel, CSV, XML etc.

    Declaration
    public Task<ApiResponse<ExportTransformerResponse>> ExportTransformerResultsWithHttpInfoAsync(ExportTransformerOptions exportTransformerOptions, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    ExportTransformerOptions exportTransformerOptions
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<ExportTransformerResponse>>

    Task of ApiResponse (ExportTransformerResponse)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GenerateStructuredContentFromAttachment(GenerateStructuredContentAttachmentOptions, int)

    Generate structured content for an attachment Use output schemas to extract data from an attachment using AI

    Declaration
    public StructuredContentResultDto GenerateStructuredContentFromAttachment(GenerateStructuredContentAttachmentOptions generateStructuredContentAttachmentOptions, int operationIndex = 0)
    Parameters
    Type Name Description
    GenerateStructuredContentAttachmentOptions generateStructuredContentAttachmentOptions
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    StructuredContentResultDto

    StructuredContentResultDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GenerateStructuredContentFromAttachmentAsync(GenerateStructuredContentAttachmentOptions, int, CancellationToken)

    Generate structured content for an attachment Use output schemas to extract data from an attachment using AI

    Declaration
    public Task<StructuredContentResultDto> GenerateStructuredContentFromAttachmentAsync(GenerateStructuredContentAttachmentOptions generateStructuredContentAttachmentOptions, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    GenerateStructuredContentAttachmentOptions generateStructuredContentAttachmentOptions
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<StructuredContentResultDto>

    Task of StructuredContentResultDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GenerateStructuredContentFromAttachmentWithHttpInfo(GenerateStructuredContentAttachmentOptions, int)

    Generate structured content for an attachment Use output schemas to extract data from an attachment using AI

    Declaration
    public ApiResponse<StructuredContentResultDto> GenerateStructuredContentFromAttachmentWithHttpInfo(GenerateStructuredContentAttachmentOptions generateStructuredContentAttachmentOptions, int operationIndex = 0)
    Parameters
    Type Name Description
    GenerateStructuredContentAttachmentOptions generateStructuredContentAttachmentOptions
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<StructuredContentResultDto>

    ApiResponse of StructuredContentResultDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GenerateStructuredContentFromAttachmentWithHttpInfoAsync(GenerateStructuredContentAttachmentOptions, int, CancellationToken)

    Generate structured content for an attachment Use output schemas to extract data from an attachment using AI

    Declaration
    public Task<ApiResponse<StructuredContentResultDto>> GenerateStructuredContentFromAttachmentWithHttpInfoAsync(GenerateStructuredContentAttachmentOptions generateStructuredContentAttachmentOptions, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    GenerateStructuredContentAttachmentOptions generateStructuredContentAttachmentOptions
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<StructuredContentResultDto>>

    Task of ApiResponse (StructuredContentResultDto)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GenerateStructuredContentFromEmail(GenerateStructuredContentEmailOptions, int)

    Generate structured content for an email Use output schemas to extract data from an email using AI

    Declaration
    public StructuredContentResultDto GenerateStructuredContentFromEmail(GenerateStructuredContentEmailOptions generateStructuredContentEmailOptions, int operationIndex = 0)
    Parameters
    Type Name Description
    GenerateStructuredContentEmailOptions generateStructuredContentEmailOptions
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    StructuredContentResultDto

    StructuredContentResultDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GenerateStructuredContentFromEmailAsync(GenerateStructuredContentEmailOptions, int, CancellationToken)

    Generate structured content for an email Use output schemas to extract data from an email using AI

    Declaration
    public Task<StructuredContentResultDto> GenerateStructuredContentFromEmailAsync(GenerateStructuredContentEmailOptions generateStructuredContentEmailOptions, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    GenerateStructuredContentEmailOptions generateStructuredContentEmailOptions
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<StructuredContentResultDto>

    Task of StructuredContentResultDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GenerateStructuredContentFromEmailWithHttpInfo(GenerateStructuredContentEmailOptions, int)

    Generate structured content for an email Use output schemas to extract data from an email using AI

    Declaration
    public ApiResponse<StructuredContentResultDto> GenerateStructuredContentFromEmailWithHttpInfo(GenerateStructuredContentEmailOptions generateStructuredContentEmailOptions, int operationIndex = 0)
    Parameters
    Type Name Description
    GenerateStructuredContentEmailOptions generateStructuredContentEmailOptions
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<StructuredContentResultDto>

    ApiResponse of StructuredContentResultDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GenerateStructuredContentFromEmailWithHttpInfoAsync(GenerateStructuredContentEmailOptions, int, CancellationToken)

    Generate structured content for an email Use output schemas to extract data from an email using AI

    Declaration
    public Task<ApiResponse<StructuredContentResultDto>> GenerateStructuredContentFromEmailWithHttpInfoAsync(GenerateStructuredContentEmailOptions generateStructuredContentEmailOptions, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    GenerateStructuredContentEmailOptions generateStructuredContentEmailOptions
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<StructuredContentResultDto>>

    Task of ApiResponse (StructuredContentResultDto)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GenerateStructuredContentFromSms(GenerateStructuredContentSmsOptions, int)

    Generate structured content for a TXT message Use output schemas to extract data from an SMS using AI

    Declaration
    public StructuredContentResultDto GenerateStructuredContentFromSms(GenerateStructuredContentSmsOptions generateStructuredContentSmsOptions, int operationIndex = 0)
    Parameters
    Type Name Description
    GenerateStructuredContentSmsOptions generateStructuredContentSmsOptions
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    StructuredContentResultDto

    StructuredContentResultDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GenerateStructuredContentFromSmsAsync(GenerateStructuredContentSmsOptions, int, CancellationToken)

    Generate structured content for a TXT message Use output schemas to extract data from an SMS using AI

    Declaration
    public Task<StructuredContentResultDto> GenerateStructuredContentFromSmsAsync(GenerateStructuredContentSmsOptions generateStructuredContentSmsOptions, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    GenerateStructuredContentSmsOptions generateStructuredContentSmsOptions
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<StructuredContentResultDto>

    Task of StructuredContentResultDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GenerateStructuredContentFromSmsWithHttpInfo(GenerateStructuredContentSmsOptions, int)

    Generate structured content for a TXT message Use output schemas to extract data from an SMS using AI

    Declaration
    public ApiResponse<StructuredContentResultDto> GenerateStructuredContentFromSmsWithHttpInfo(GenerateStructuredContentSmsOptions generateStructuredContentSmsOptions, int operationIndex = 0)
    Parameters
    Type Name Description
    GenerateStructuredContentSmsOptions generateStructuredContentSmsOptions
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<StructuredContentResultDto>

    ApiResponse of StructuredContentResultDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GenerateStructuredContentFromSmsWithHttpInfoAsync(GenerateStructuredContentSmsOptions, int, CancellationToken)

    Generate structured content for a TXT message Use output schemas to extract data from an SMS using AI

    Declaration
    public Task<ApiResponse<StructuredContentResultDto>> GenerateStructuredContentFromSmsWithHttpInfoAsync(GenerateStructuredContentSmsOptions generateStructuredContentSmsOptions, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    GenerateStructuredContentSmsOptions generateStructuredContentSmsOptions
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<StructuredContentResultDto>>

    Task of ApiResponse (StructuredContentResultDto)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetBasePath()

    Gets the base path of the API client.

    Declaration
    public string GetBasePath()
    Returns
    Type Description
    string

    The base path

    View Source

    GetExportTransformerResultsJob(Guid, int)

    Get export transformer results job Get the job status for an export

    Declaration
    public ExportTransformerResultJobDto GetExportTransformerResultsJob(Guid id, int operationIndex = 0)
    Parameters
    Type Name Description
    Guid id
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ExportTransformerResultJobDto

    ExportTransformerResultJobDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetExportTransformerResultsJobAsync(Guid, int, CancellationToken)

    Get export transformer results job Get the job status for an export

    Declaration
    public Task<ExportTransformerResultJobDto> GetExportTransformerResultsJobAsync(Guid id, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    Guid id
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ExportTransformerResultJobDto>

    Task of ExportTransformerResultJobDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetExportTransformerResultsJobWithHttpInfo(Guid, int)

    Get export transformer results job Get the job status for an export

    Declaration
    public ApiResponse<ExportTransformerResultJobDto> GetExportTransformerResultsJobWithHttpInfo(Guid id, int operationIndex = 0)
    Parameters
    Type Name Description
    Guid id
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<ExportTransformerResultJobDto>

    ApiResponse of ExportTransformerResultJobDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetExportTransformerResultsJobWithHttpInfoAsync(Guid, int, CancellationToken)

    Get export transformer results job Get the job status for an export

    Declaration
    public Task<ApiResponse<ExportTransformerResultJobDto>> GetExportTransformerResultsJobWithHttpInfoAsync(Guid id, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    Guid id
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<ExportTransformerResultJobDto>>

    Task of ApiResponse (ExportTransformerResultJobDto)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformer(Guid, int)

    Get a transformer Get AI transformer and schemas by ID

    Declaration
    public AITransformDto GetTransformer(Guid id, int operationIndex = 0)
    Parameters
    Type Name Description
    Guid id
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    AITransformDto

    AITransformDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerAsync(Guid, int, CancellationToken)

    Get a transformer Get AI transformer and schemas by ID

    Declaration
    public Task<AITransformDto> GetTransformerAsync(Guid id, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    Guid id
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<AITransformDto>

    Task of AITransformDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerMapping(Guid, int)

    Get transformer mapping Get an AI transformer mapping

    Declaration
    public AITransformMappingDto GetTransformerMapping(Guid id, int operationIndex = 0)
    Parameters
    Type Name Description
    Guid id

    ID of transform mapping

    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    AITransformMappingDto

    AITransformMappingDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerMappingAsync(Guid, int, CancellationToken)

    Get transformer mapping Get an AI transformer mapping

    Declaration
    public Task<AITransformMappingDto> GetTransformerMappingAsync(Guid id, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    Guid id

    ID of transform mapping

    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<AITransformMappingDto>

    Task of AITransformMappingDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerMappingWithHttpInfo(Guid, int)

    Get transformer mapping Get an AI transformer mapping

    Declaration
    public ApiResponse<AITransformMappingDto> GetTransformerMappingWithHttpInfo(Guid id, int operationIndex = 0)
    Parameters
    Type Name Description
    Guid id

    ID of transform mapping

    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<AITransformMappingDto>

    ApiResponse of AITransformMappingDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerMappingWithHttpInfoAsync(Guid, int, CancellationToken)

    Get transformer mapping Get an AI transformer mapping

    Declaration
    public Task<ApiResponse<AITransformMappingDto>> GetTransformerMappingWithHttpInfoAsync(Guid id, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    Guid id

    ID of transform mapping

    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<AITransformMappingDto>>

    Task of ApiResponse (AITransformMappingDto)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerMappings(Guid?, Guid?, string, int?, int?, string, int)

    Get transformer mappings Get AI transformer mappings to other entities

    Declaration
    public PageAITransformMappingProjection GetTransformerMappings(Guid? aiTransformId = null, Guid? entityId = null, string entityType = null, int? page = null, int? size = null, string sort = null, int operationIndex = 0)
    Parameters
    Type Name Description
    Guid? aiTransformId

    (optional)

    Guid? entityId

    (optional)

    string entityType

    (optional)

    int? page

    (optional, default to 0)

    int? size

    Optional page size. Maximum size is 100. Use page index and sort to page through larger results (optional, default to 20)

    string sort

    Optional createdAt sort direction ASC or DESC (optional, default to ASC)

    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    PageAITransformMappingProjection

    PageAITransformMappingProjection

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerMappingsAsync(Guid?, Guid?, string, int?, int?, string, int, CancellationToken)

    Get transformer mappings Get AI transformer mappings to other entities

    Declaration
    public Task<PageAITransformMappingProjection> GetTransformerMappingsAsync(Guid? aiTransformId = null, Guid? entityId = null, string entityType = null, int? page = null, int? size = null, string sort = null, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    Guid? aiTransformId

    (optional)

    Guid? entityId

    (optional)

    string entityType

    (optional)

    int? page

    (optional, default to 0)

    int? size

    Optional page size. Maximum size is 100. Use page index and sort to page through larger results (optional, default to 20)

    string sort

    Optional createdAt sort direction ASC or DESC (optional, default to ASC)

    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<PageAITransformMappingProjection>

    Task of PageAITransformMappingProjection

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerMappingsWithHttpInfo(Guid?, Guid?, string, int?, int?, string, int)

    Get transformer mappings Get AI transformer mappings to other entities

    Declaration
    public ApiResponse<PageAITransformMappingProjection> GetTransformerMappingsWithHttpInfo(Guid? aiTransformId = null, Guid? entityId = null, string entityType = null, int? page = null, int? size = null, string sort = null, int operationIndex = 0)
    Parameters
    Type Name Description
    Guid? aiTransformId

    (optional)

    Guid? entityId

    (optional)

    string entityType

    (optional)

    int? page

    (optional, default to 0)

    int? size

    Optional page size. Maximum size is 100. Use page index and sort to page through larger results (optional, default to 20)

    string sort

    Optional createdAt sort direction ASC or DESC (optional, default to ASC)

    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<PageAITransformMappingProjection>

    ApiResponse of PageAITransformMappingProjection

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerMappingsWithHttpInfoAsync(Guid?, Guid?, string, int?, int?, string, int, CancellationToken)

    Get transformer mappings Get AI transformer mappings to other entities

    Declaration
    public Task<ApiResponse<PageAITransformMappingProjection>> GetTransformerMappingsWithHttpInfoAsync(Guid? aiTransformId = null, Guid? entityId = null, string entityType = null, int? page = null, int? size = null, string sort = null, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    Guid? aiTransformId

    (optional)

    Guid? entityId

    (optional)

    string entityType

    (optional)

    int? page

    (optional, default to 0)

    int? size

    Optional page size. Maximum size is 100. Use page index and sort to page through larger results (optional, default to 20)

    string sort

    Optional createdAt sort direction ASC or DESC (optional, default to ASC)

    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<PageAITransformMappingProjection>>

    Task of ApiResponse (PageAITransformMappingProjection)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerResult(Guid, int)

    Get transformer result Get AI transformer result

    Declaration
    public AITransformResultDto GetTransformerResult(Guid id, int operationIndex = 0)
    Parameters
    Type Name Description
    Guid id

    ID of transform result

    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    AITransformResultDto

    AITransformResultDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerResultAsync(Guid, int, CancellationToken)

    Get transformer result Get AI transformer result

    Declaration
    public Task<AITransformResultDto> GetTransformerResultAsync(Guid id, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    Guid id

    ID of transform result

    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<AITransformResultDto>

    Task of AITransformResultDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerResultWithHttpInfo(Guid, int)

    Get transformer result Get AI transformer result

    Declaration
    public ApiResponse<AITransformResultDto> GetTransformerResultWithHttpInfo(Guid id, int operationIndex = 0)
    Parameters
    Type Name Description
    Guid id

    ID of transform result

    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<AITransformResultDto>

    ApiResponse of AITransformResultDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerResultWithHttpInfoAsync(Guid, int, CancellationToken)

    Get transformer result Get AI transformer result

    Declaration
    public Task<ApiResponse<AITransformResultDto>> GetTransformerResultWithHttpInfoAsync(Guid id, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    Guid id

    ID of transform result

    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<AITransformResultDto>>

    Task of ApiResponse (AITransformResultDto)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerResults(Guid?, Guid?, string, Guid?, Guid?, Guid?, string, int?, int?, string, int)

    Get transformer results Get AI transformer results

    Declaration
    public PageAITransformResultProjection GetTransformerResults(Guid? emailId = null, Guid? smsId = null, string attachmentId = null, Guid? aiTransformId = null, Guid? aiTransformMappingId = null, Guid? entityId = null, string entityType = null, int? page = null, int? size = null, string sort = null, int operationIndex = 0)
    Parameters
    Type Name Description
    Guid? emailId

    (optional)

    Guid? smsId

    (optional)

    string attachmentId

    (optional)

    Guid? aiTransformId

    (optional)

    Guid? aiTransformMappingId

    (optional)

    Guid? entityId

    (optional)

    string entityType

    (optional)

    int? page

    (optional, default to 0)

    int? size

    Optional page size. Maximum size is 100. Use page index and sort to page through larger results (optional, default to 20)

    string sort

    Optional createdAt sort direction ASC or DESC (optional, default to ASC)

    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    PageAITransformResultProjection

    PageAITransformResultProjection

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerResultsAsync(Guid?, Guid?, string, Guid?, Guid?, Guid?, string, int?, int?, string, int, CancellationToken)

    Get transformer results Get AI transformer results

    Declaration
    public Task<PageAITransformResultProjection> GetTransformerResultsAsync(Guid? emailId = null, Guid? smsId = null, string attachmentId = null, Guid? aiTransformId = null, Guid? aiTransformMappingId = null, Guid? entityId = null, string entityType = null, int? page = null, int? size = null, string sort = null, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    Guid? emailId

    (optional)

    Guid? smsId

    (optional)

    string attachmentId

    (optional)

    Guid? aiTransformId

    (optional)

    Guid? aiTransformMappingId

    (optional)

    Guid? entityId

    (optional)

    string entityType

    (optional)

    int? page

    (optional, default to 0)

    int? size

    Optional page size. Maximum size is 100. Use page index and sort to page through larger results (optional, default to 20)

    string sort

    Optional createdAt sort direction ASC or DESC (optional, default to ASC)

    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<PageAITransformResultProjection>

    Task of PageAITransformResultProjection

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerResultsTable(bool, bool, Guid?, Guid?, string, Guid?, Guid?, Guid?, string, int?, int?, string, int)

    Get transformer results table Get AI transformer results in table format

    Declaration
    public PageTableData GetTransformerResultsTable(bool includeMetaData, bool flattenArraysToRows, Guid? emailId = null, Guid? smsId = null, string attachmentId = null, Guid? aiTransformId = null, Guid? aiTransformMappingId = null, Guid? entityId = null, string entityType = null, int? page = null, int? size = null, string sort = null, int operationIndex = 0)
    Parameters
    Type Name Description
    bool includeMetaData
    bool flattenArraysToRows
    Guid? emailId

    (optional)

    Guid? smsId

    (optional)

    string attachmentId

    (optional)

    Guid? aiTransformId

    (optional)

    Guid? aiTransformMappingId

    (optional)

    Guid? entityId

    (optional)

    string entityType

    (optional)

    int? page

    (optional, default to 0)

    int? size

    Optional page size. Maximum size is 100. Use page index and sort to page through larger results (optional, default to 20)

    string sort

    Optional createdAt sort direction ASC or DESC (optional, default to ASC)

    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    PageTableData

    PageTableData

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerResultsTableAsync(bool, bool, Guid?, Guid?, string, Guid?, Guid?, Guid?, string, int?, int?, string, int, CancellationToken)

    Get transformer results table Get AI transformer results in table format

    Declaration
    public Task<PageTableData> GetTransformerResultsTableAsync(bool includeMetaData, bool flattenArraysToRows, Guid? emailId = null, Guid? smsId = null, string attachmentId = null, Guid? aiTransformId = null, Guid? aiTransformMappingId = null, Guid? entityId = null, string entityType = null, int? page = null, int? size = null, string sort = null, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    bool includeMetaData
    bool flattenArraysToRows
    Guid? emailId

    (optional)

    Guid? smsId

    (optional)

    string attachmentId

    (optional)

    Guid? aiTransformId

    (optional)

    Guid? aiTransformMappingId

    (optional)

    Guid? entityId

    (optional)

    string entityType

    (optional)

    int? page

    (optional, default to 0)

    int? size

    Optional page size. Maximum size is 100. Use page index and sort to page through larger results (optional, default to 20)

    string sort

    Optional createdAt sort direction ASC or DESC (optional, default to ASC)

    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<PageTableData>

    Task of PageTableData

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerResultsTableWithHttpInfo(bool, bool, Guid?, Guid?, string, Guid?, Guid?, Guid?, string, int?, int?, string, int)

    Get transformer results table Get AI transformer results in table format

    Declaration
    public ApiResponse<PageTableData> GetTransformerResultsTableWithHttpInfo(bool includeMetaData, bool flattenArraysToRows, Guid? emailId = null, Guid? smsId = null, string attachmentId = null, Guid? aiTransformId = null, Guid? aiTransformMappingId = null, Guid? entityId = null, string entityType = null, int? page = null, int? size = null, string sort = null, int operationIndex = 0)
    Parameters
    Type Name Description
    bool includeMetaData
    bool flattenArraysToRows
    Guid? emailId

    (optional)

    Guid? smsId

    (optional)

    string attachmentId

    (optional)

    Guid? aiTransformId

    (optional)

    Guid? aiTransformMappingId

    (optional)

    Guid? entityId

    (optional)

    string entityType

    (optional)

    int? page

    (optional, default to 0)

    int? size

    Optional page size. Maximum size is 100. Use page index and sort to page through larger results (optional, default to 20)

    string sort

    Optional createdAt sort direction ASC or DESC (optional, default to ASC)

    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<PageTableData>

    ApiResponse of PageTableData

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerResultsTableWithHttpInfoAsync(bool, bool, Guid?, Guid?, string, Guid?, Guid?, Guid?, string, int?, int?, string, int, CancellationToken)

    Get transformer results table Get AI transformer results in table format

    Declaration
    public Task<ApiResponse<PageTableData>> GetTransformerResultsTableWithHttpInfoAsync(bool includeMetaData, bool flattenArraysToRows, Guid? emailId = null, Guid? smsId = null, string attachmentId = null, Guid? aiTransformId = null, Guid? aiTransformMappingId = null, Guid? entityId = null, string entityType = null, int? page = null, int? size = null, string sort = null, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    bool includeMetaData
    bool flattenArraysToRows
    Guid? emailId

    (optional)

    Guid? smsId

    (optional)

    string attachmentId

    (optional)

    Guid? aiTransformId

    (optional)

    Guid? aiTransformMappingId

    (optional)

    Guid? entityId

    (optional)

    string entityType

    (optional)

    int? page

    (optional, default to 0)

    int? size

    Optional page size. Maximum size is 100. Use page index and sort to page through larger results (optional, default to 20)

    string sort

    Optional createdAt sort direction ASC or DESC (optional, default to ASC)

    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<PageTableData>>

    Task of ApiResponse (PageTableData)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerResultsWithHttpInfo(Guid?, Guid?, string, Guid?, Guid?, Guid?, string, int?, int?, string, int)

    Get transformer results Get AI transformer results

    Declaration
    public ApiResponse<PageAITransformResultProjection> GetTransformerResultsWithHttpInfo(Guid? emailId = null, Guid? smsId = null, string attachmentId = null, Guid? aiTransformId = null, Guid? aiTransformMappingId = null, Guid? entityId = null, string entityType = null, int? page = null, int? size = null, string sort = null, int operationIndex = 0)
    Parameters
    Type Name Description
    Guid? emailId

    (optional)

    Guid? smsId

    (optional)

    string attachmentId

    (optional)

    Guid? aiTransformId

    (optional)

    Guid? aiTransformMappingId

    (optional)

    Guid? entityId

    (optional)

    string entityType

    (optional)

    int? page

    (optional, default to 0)

    int? size

    Optional page size. Maximum size is 100. Use page index and sort to page through larger results (optional, default to 20)

    string sort

    Optional createdAt sort direction ASC or DESC (optional, default to ASC)

    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<PageAITransformResultProjection>

    ApiResponse of PageAITransformResultProjection

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerResultsWithHttpInfoAsync(Guid?, Guid?, string, Guid?, Guid?, Guid?, string, int?, int?, string, int, CancellationToken)

    Get transformer results Get AI transformer results

    Declaration
    public Task<ApiResponse<PageAITransformResultProjection>> GetTransformerResultsWithHttpInfoAsync(Guid? emailId = null, Guid? smsId = null, string attachmentId = null, Guid? aiTransformId = null, Guid? aiTransformMappingId = null, Guid? entityId = null, string entityType = null, int? page = null, int? size = null, string sort = null, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    Guid? emailId

    (optional)

    Guid? smsId

    (optional)

    string attachmentId

    (optional)

    Guid? aiTransformId

    (optional)

    Guid? aiTransformMappingId

    (optional)

    Guid? entityId

    (optional)

    string entityType

    (optional)

    int? page

    (optional, default to 0)

    int? size

    Optional page size. Maximum size is 100. Use page index and sort to page through larger results (optional, default to 20)

    string sort

    Optional createdAt sort direction ASC or DESC (optional, default to ASC)

    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<PageAITransformResultProjection>>

    Task of ApiResponse (PageAITransformResultProjection)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerWithHttpInfo(Guid, int)

    Get a transformer Get AI transformer and schemas by ID

    Declaration
    public ApiResponse<AITransformDto> GetTransformerWithHttpInfo(Guid id, int operationIndex = 0)
    Parameters
    Type Name Description
    Guid id
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<AITransformDto>

    ApiResponse of AITransformDto

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformerWithHttpInfoAsync(Guid, int, CancellationToken)

    Get a transformer Get AI transformer and schemas by ID

    Declaration
    public Task<ApiResponse<AITransformDto>> GetTransformerWithHttpInfoAsync(Guid id, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    Guid id
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<AITransformDto>>

    Task of ApiResponse (AITransformDto)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformers(int?, int?, string, List<Guid>, int)

    List transformers List all AI transforms

    Declaration
    public PageAITransformProjection GetTransformers(int? page = null, int? size = null, string sort = null, List<Guid> include = null, int operationIndex = 0)
    Parameters
    Type Name Description
    int? page

    (optional, default to 0)

    int? size

    Optional page size in SMS list pagination. Maximum size is 100. Use page index and sort to page through larger results (optional, default to 20)

    string sort

    Optional createdAt sort direction ASC or DESC (optional, default to ASC)

    List<Guid> include

    Optional list of IDs to include in result (optional)

    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    PageAITransformProjection

    PageAITransformProjection

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformersAsync(int?, int?, string, List<Guid>, int, CancellationToken)

    List transformers List all AI transforms

    Declaration
    public Task<PageAITransformProjection> GetTransformersAsync(int? page = null, int? size = null, string sort = null, List<Guid> include = null, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    int? page

    (optional, default to 0)

    int? size

    Optional page size in SMS list pagination. Maximum size is 100. Use page index and sort to page through larger results (optional, default to 20)

    string sort

    Optional createdAt sort direction ASC or DESC (optional, default to ASC)

    List<Guid> include

    Optional list of IDs to include in result (optional)

    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<PageAITransformProjection>

    Task of PageAITransformProjection

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformersWithHttpInfo(int?, int?, string, List<Guid>, int)

    List transformers List all AI transforms

    Declaration
    public ApiResponse<PageAITransformProjection> GetTransformersWithHttpInfo(int? page = null, int? size = null, string sort = null, List<Guid> include = null, int operationIndex = 0)
    Parameters
    Type Name Description
    int? page

    (optional, default to 0)

    int? size

    Optional page size in SMS list pagination. Maximum size is 100. Use page index and sort to page through larger results (optional, default to 20)

    string sort

    Optional createdAt sort direction ASC or DESC (optional, default to ASC)

    List<Guid> include

    Optional list of IDs to include in result (optional)

    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<PageAITransformProjection>

    ApiResponse of PageAITransformProjection

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    GetTransformersWithHttpInfoAsync(int?, int?, string, List<Guid>, int, CancellationToken)

    List transformers List all AI transforms

    Declaration
    public Task<ApiResponse<PageAITransformProjection>> GetTransformersWithHttpInfoAsync(int? page = null, int? size = null, string sort = null, List<Guid> include = null, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    int? page

    (optional, default to 0)

    int? size

    Optional page size in SMS list pagination. Maximum size is 100. Use page index and sort to page through larger results (optional, default to 20)

    string sort

    Optional createdAt sort direction ASC or DESC (optional, default to ASC)

    List<Guid> include

    Optional list of IDs to include in result (optional)

    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<PageAITransformProjection>>

    Task of ApiResponse (PageAITransformProjection)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    InvokeTransformer(InvokeTransformerOptions, int)

    Invoke a transformer Execute an AI transformer to generate structured content

    Declaration
    public ConditionalStructuredContentResult InvokeTransformer(InvokeTransformerOptions invokeTransformerOptions, int operationIndex = 0)
    Parameters
    Type Name Description
    InvokeTransformerOptions invokeTransformerOptions
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ConditionalStructuredContentResult

    ConditionalStructuredContentResult

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    InvokeTransformerAsync(InvokeTransformerOptions, int, CancellationToken)

    Invoke a transformer Execute an AI transformer to generate structured content

    Declaration
    public Task<ConditionalStructuredContentResult> InvokeTransformerAsync(InvokeTransformerOptions invokeTransformerOptions, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    InvokeTransformerOptions invokeTransformerOptions
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ConditionalStructuredContentResult>

    Task of ConditionalStructuredContentResult

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    InvokeTransformerWithHttpInfo(InvokeTransformerOptions, int)

    Invoke a transformer Execute an AI transformer to generate structured content

    Declaration
    public ApiResponse<ConditionalStructuredContentResult> InvokeTransformerWithHttpInfo(InvokeTransformerOptions invokeTransformerOptions, int operationIndex = 0)
    Parameters
    Type Name Description
    InvokeTransformerOptions invokeTransformerOptions
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<ConditionalStructuredContentResult>

    ApiResponse of ConditionalStructuredContentResult

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    InvokeTransformerWithHttpInfoAsync(InvokeTransformerOptions, int, CancellationToken)

    Invoke a transformer Execute an AI transformer to generate structured content

    Declaration
    public Task<ApiResponse<ConditionalStructuredContentResult>> InvokeTransformerWithHttpInfoAsync(InvokeTransformerOptions invokeTransformerOptions, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    InvokeTransformerOptions invokeTransformerOptions
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<ConditionalStructuredContentResult>>

    Task of ApiResponse (ConditionalStructuredContentResult)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    TestTransformerMappingMatch(Guid, Guid?, Guid?, string, int)

    Test transformer mapping match result Evaluate transform mapping match conditions for given email, sms, or attachment

    Declaration
    public AITransformMappingMatchResult TestTransformerMappingMatch(Guid id, Guid? emailId = null, Guid? smsId = null, string attachmentId = null, int operationIndex = 0)
    Parameters
    Type Name Description
    Guid id

    ID of transform mapping

    Guid? emailId

    (optional)

    Guid? smsId

    (optional)

    string attachmentId

    (optional)

    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    AITransformMappingMatchResult

    AITransformMappingMatchResult

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    TestTransformerMappingMatchAsync(Guid, Guid?, Guid?, string, int, CancellationToken)

    Test transformer mapping match result Evaluate transform mapping match conditions for given email, sms, or attachment

    Declaration
    public Task<AITransformMappingMatchResult> TestTransformerMappingMatchAsync(Guid id, Guid? emailId = null, Guid? smsId = null, string attachmentId = null, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    Guid id

    ID of transform mapping

    Guid? emailId

    (optional)

    Guid? smsId

    (optional)

    string attachmentId

    (optional)

    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<AITransformMappingMatchResult>

    Task of AITransformMappingMatchResult

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    TestTransformerMappingMatchWithHttpInfo(Guid, Guid?, Guid?, string, int)

    Test transformer mapping match result Evaluate transform mapping match conditions for given email, sms, or attachment

    Declaration
    public ApiResponse<AITransformMappingMatchResult> TestTransformerMappingMatchWithHttpInfo(Guid id, Guid? emailId = null, Guid? smsId = null, string attachmentId = null, int operationIndex = 0)
    Parameters
    Type Name Description
    Guid id

    ID of transform mapping

    Guid? emailId

    (optional)

    Guid? smsId

    (optional)

    string attachmentId

    (optional)

    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<AITransformMappingMatchResult>

    ApiResponse of AITransformMappingMatchResult

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    TestTransformerMappingMatchWithHttpInfoAsync(Guid, Guid?, Guid?, string, int, CancellationToken)

    Test transformer mapping match result Evaluate transform mapping match conditions for given email, sms, or attachment

    Declaration
    public Task<ApiResponse<AITransformMappingMatchResult>> TestTransformerMappingMatchWithHttpInfoAsync(Guid id, Guid? emailId = null, Guid? smsId = null, string attachmentId = null, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    Guid id

    ID of transform mapping

    Guid? emailId

    (optional)

    Guid? smsId

    (optional)

    string attachmentId

    (optional)

    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<AITransformMappingMatchResult>>

    Task of ApiResponse (AITransformMappingMatchResult)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    ValidateStructuredOutputSchema(StructuredOutputSchema, int)

    Validate structured content schema Check if a schema is valid and can be used to extract data using AI

    Declaration
    public StructuredOutputSchemaValidation ValidateStructuredOutputSchema(StructuredOutputSchema structuredOutputSchema, int operationIndex = 0)
    Parameters
    Type Name Description
    StructuredOutputSchema structuredOutputSchema
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    StructuredOutputSchemaValidation

    StructuredOutputSchemaValidation

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    ValidateStructuredOutputSchemaAsync(StructuredOutputSchema, int, CancellationToken)

    Validate structured content schema Check if a schema is valid and can be used to extract data using AI

    Declaration
    public Task<StructuredOutputSchemaValidation> ValidateStructuredOutputSchemaAsync(StructuredOutputSchema structuredOutputSchema, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    StructuredOutputSchema structuredOutputSchema
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<StructuredOutputSchemaValidation>

    Task of StructuredOutputSchemaValidation

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    ValidateStructuredOutputSchemaWithHttpInfo(StructuredOutputSchema, int)

    Validate structured content schema Check if a schema is valid and can be used to extract data using AI

    Declaration
    public ApiResponse<StructuredOutputSchemaValidation> ValidateStructuredOutputSchemaWithHttpInfo(StructuredOutputSchema structuredOutputSchema, int operationIndex = 0)
    Parameters
    Type Name Description
    StructuredOutputSchema structuredOutputSchema
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<StructuredOutputSchemaValidation>

    ApiResponse of StructuredOutputSchemaValidation

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    ValidateStructuredOutputSchemaWithHttpInfoAsync(StructuredOutputSchema, int, CancellationToken)

    Validate structured content schema Check if a schema is valid and can be used to extract data using AI

    Declaration
    public Task<ApiResponse<StructuredOutputSchemaValidation>> ValidateStructuredOutputSchemaWithHttpInfoAsync(StructuredOutputSchema structuredOutputSchema, int operationIndex = 0, CancellationToken cancellationToken = default)
    Parameters
    Type Name Description
    StructuredOutputSchema structuredOutputSchema
    int operationIndex

    Index associated with the operation.

    CancellationToken cancellationToken

    Cancellation Token to cancel the request.

    Returns
    Type Description
    Task<ApiResponse<StructuredOutputSchemaValidation>>

    Task of ApiResponse (StructuredOutputSchemaValidation)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    Implements

    IAIControllerApi
    IAIControllerApiSync
    IAIControllerApiAsync
    IApiAccessor
    • View Source
    In this article
    Back to top See MailSlurp website for more information.