Skip to main content
🎉 API version '2024-10-01' just released with many new features. If you are still on an older version, check the migration guide.

Get an asynchronous note generation

GET 

/generate-note-async/:id

Poll the status —and results if successful— of an asynchronous note generation.

Request

Path Parameters

    id uuidrequired

    The id of the asynchronous request.

    Example: 23A9981B-9E46-4ADB-BB0B-8E406C624540

Responses

The asynchronous note generation details.

Schema
    oneOf
    id uuidrequired

    The id of the asynchronous request.

    client_request_id copilot_client_request_id (string)

    Possible values: <= 128 characters

    An optional unique client-made id for this request. When specified, this id is included in the Json payload that will be sent asynchronously. This can help clients both guarantee idempotency and correlate asynchronous responses with their requests.

    Note: this id must be different for every request. It is recommended to use a randomly generated UUID.

    status async_request_status (string)required

    Possible values: [ONGOING, FAILED, SUCCEEDED]

Loading...