Constructors

Methods

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

    Parameters

    • objectId: string

      The Blog Tag id.

    • Optionalarchived: boolean

      Whether to return only results that have been archived.

    • Optional_options: Configuration

    Returns Promise<void>

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

    Parameters

    • objectId: string

      The Blog Tag id.

    • Optionalarchived: boolean

      Whether to return only results that have been archived.

    • Optional_options: Configuration

    Returns Promise<HttpInfo<void>>

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

    Parameters

    • objectId: string

      The Blog Tag id.

    • Optionalarchived: boolean

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

    • Optionalproperty: string
    • Optional_options: Configuration

    Returns Promise<Tag>

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

    Parameters

    • objectId: string

      The Blog Tag id.

    • Optionalarchived: boolean

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

    • Optionalproperty: string
    • Optional_options: Configuration

    Returns Promise<HttpInfo<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

    • OptionalcreatedAt: Date

      Only return Blog Tags created at exactly the specified time.

    • OptionalcreatedAfter: Date

      Only return Blog Tags created after the specified time.

    • OptionalcreatedBefore: Date

      Only return Blog Tags created before the specified time.

    • OptionalupdatedAt: Date

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

    • OptionalupdatedAfter: Date

      Only return Blog Tags last updated after the specified time.

    • OptionalupdatedBefore: Date

      Only return Blog Tags last updated before the specified time.

    • Optionalsort: string[]

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

    • Optionalafter: 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.

    • Optionallimit: number

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

    • Optionalarchived: boolean

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

    • Optionalproperty: string
    • Optional_options: Configuration

    Returns Promise<CollectionResponseWithTotalTagForwardPaging>

  • 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

    • OptionalcreatedAt: Date

      Only return Blog Tags created at exactly the specified time.

    • OptionalcreatedAfter: Date

      Only return Blog Tags created after the specified time.

    • OptionalcreatedBefore: Date

      Only return Blog Tags created before the specified time.

    • OptionalupdatedAt: Date

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

    • OptionalupdatedAfter: Date

      Only return Blog Tags last updated after the specified time.

    • OptionalupdatedBefore: Date

      Only return Blog Tags last updated before the specified time.

    • Optionalsort: string[]

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

    • Optionalafter: 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.

    • Optionallimit: number

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

    • Optionalarchived: boolean

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

    • Optionalproperty: string
    • Optional_options: Configuration

    Returns Promise<HttpInfo<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.

    • Optionalarchived: boolean

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

    • Optional_options: Configuration

    Returns Promise<Tag>

  • 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.

    • Optionalarchived: boolean

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

    • Optional_options: Configuration

    Returns Promise<HttpInfo<Tag>>