Hierarchy

  • BlogTagsApi

Constructors

Properties

api: ObservableBlogTagsApi

Methods

  • Delete the Blog Tag object identified by the id in the path. Delete a Blog Tag

    Parameters

    • objectId: string

      The Blog Tag id.

    • Optional archived: boolean

      Whether to return only results that have been archived.

    • Optional _options: Configuration

    Returns Promise<void>

  • Retrieve the Blog Tag object identified by the id in the path. Retrieve a Blog Tag

    Parameters

    • objectId: string

      The Blog Tag id.

    • Optional archived: boolean

      Specifies whether to return deleted Blog Tags. Defaults to `false`.

    • Optional _options: Configuration

    Returns Promise<Tag>

  • Get the list of blog tags. Supports paging and filtering. This method would be useful for an integration that examined these models and used an external service to suggest edits. Get all Blog Tags

    Parameters

    • Optional createdAt: Date

      Only return Blog Tags created at exactly the specified time.

    • Optional createdAfter: Date

      Only return Blog Tags created after the specified time.

    • Optional createdBefore: Date

      Only return Blog Tags created before the specified time.

    • Optional updatedAt: Date

      Only return Blog Tags last updated at exactly the specified time.

    • Optional updatedAfter: Date

      Only return Blog Tags last updated after the specified time.

    • Optional updatedBefore: Date

      Only return Blog Tags last updated before the specified time.

    • Optional sort: string[]

      Specifies which fields to use for sorting results. Valid fields are `name`, `createdAt`, `updatedAt`, `createdBy`, `updatedBy`. `createdAt` will be used by default.

    • Optional after: string

      The cursor token value to get the next set of results. You can get this from the `paging.next.after` JSON property of a paged response containing more results.

    • Optional limit: number

      The maximum number of results to return. Default is 100.

    • Optional archived: boolean

      Specifies whether to return deleted Blog Tags. Defaults to `false`.

    • Optional _options: Configuration

    Returns Promise<CollectionResponseWithTotalTagForwardPaging>

  • Sparse updates a single Blog Tag object identified by the id in the path. All the column values need not be specified. Only the that need to be modified can be specified. Update a Blog Tag

    Parameters

    • objectId: string

      The Blog Tag id.

    • tag: Tag

      The JSON representation of the updated Blog Tag.

    • Optional archived: boolean

      Specifies whether to update deleted Blog Tags. Defaults to `false`.

    • Optional _options: Configuration

    Returns Promise<Tag>

Generated using TypeDoc