Hierarchy

  • BlogAuthorsApi

Constructors

Properties

api: ObservableBlogAuthorsApi

Methods

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

    Parameters

    • objectId: string

      The Blog Author id.

    • Optional archived: boolean

      Whether to return only results that have been archived.

    • Optional _options: Configuration

    Returns Promise<void>

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

    Parameters

    • objectId: string

      The Blog Author id.

    • Optional archived: boolean

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

    • Optional _options: Configuration

    Returns Promise<BlogAuthor>

  • Get the list of blog authors. 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 Authors

    Parameters

    • Optional createdAt: Date

      Only return Blog Authors created at exactly the specified time.

    • Optional createdAfter: Date

      Only return Blog Authors created after the specified time.

    • Optional createdBefore: Date

      Only return Blog Authors created before the specified time.

    • Optional updatedAt: Date

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

    • Optional updatedAfter: Date

      Only return Blog Authors last updated after the specified time.

    • Optional updatedBefore: Date

      Only return Blog Authors 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 Authors. Defaults to `false`.

    • Optional _options: Configuration

    Returns Promise<CollectionResponseWithTotalBlogAuthorForwardPaging>

  • Sparse updates a single Blog Author 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 Author

    Parameters

    • objectId: string

      The Blog Author id.

    • blogAuthor: BlogAuthor

      The JSON representation of the updated Blog Author.

    • Optional archived: boolean

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

    • Optional _options: Configuration

    Returns Promise<BlogAuthor>

Generated using TypeDoc