Threads API

    3 endpoints

    Threaded conversation endpoints.

    GET
    Auth Required

    Create a new thread POST /threads / export async function create( collectionId: string, appId: string, input: CreateThre

    Create a new thread POST /threads / export async function create( collectionId: string, appId: string, input: CreateThre

    Endpoint

    /{zone}/collection/{collectionId}/app/{appId}/recordsn)}/{threadId}

    Parameters

    zone
    path
    string
    Required
    collectionId
    path
    string
    Required
    appId
    path
    string
    Required
    threadId
    path
    string
    Required

    Responses

    200
    Success
    {
      "schema": "AppThread"
    }
    400
    Bad request
    401
    Unauthorized
    404
    Not found
    PATCH
    Auth Required

    List threads with optional query parameters GET /threads / export async function list( collectionId: string, appId: stri

    List threads with optional query parameters GET /threads / export async function list( collectionId: string, appId: stri

    Endpoint

    /{zone}/collection/{collectionId}/app/{appId}/recordsn)}/{threadId}

    Parameters

    zone
    path
    string
    Required
    collectionId
    path
    string
    Required
    appId
    path
    string
    Required
    threadId
    path
    string
    Required
    body
    body
    UpdateThreadInput
    Required

    See UpdateThreadInput schema

    Responses

    200
    Success
    {
      "schema": "AppThread"
    }
    400
    Bad request
    401
    Unauthorized
    404
    Not found
    POST
    Auth Required

    Soft delete a thread DELETE /threads/:threadId / export async function remove( collectionId: string, appId: string, thre

    Soft delete a thread DELETE /threads/:threadId / export async function remove( collectionId: string, appId: string, thre

    Endpoint

    /{zone}/collection/{collectionId}/app/{appId}/recordsn)}/{threadId}/reply

    Parameters

    zone
    path
    string
    Required
    collectionId
    path
    string
    Required
    appId
    path
    string
    Required
    threadId
    path
    string
    Required
    body
    body
    ReplyInput
    Required

    See ReplyInput schema

    Responses

    200
    Success
    {
      "schema": "AppThread"
    }
    400
    Bad request
    401
    Unauthorized
    404
    Not found