Constructors

Methods

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

    Parameters

    • objectId: string

      The Blog Author id.

    • Optionalarchived: boolean

      Whether to return only results that have been archived.

    • Optional_options: Configuration

    Returns Promise<void>

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

    Parameters

    • objectId: string

      The Blog Author id.

    • Optionalarchived: boolean

      Whether to return only results that have been archived.

    • Optional_options: Configuration

    Returns Promise<HttpInfo<void>>

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

    Parameters

    • objectId: string

      The Blog Author id.

    • Optionalarchived: boolean

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

    • Optionalproperty: string
    • 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

    • OptionalcreatedAt: Date

      Only return Blog Authors created at exactly the specified time.

    • OptionalcreatedAfter: Date

      Only return Blog Authors created after the specified time.

    • OptionalcreatedBefore: Date

      Only return Blog Authors created before the specified time.

    • OptionalupdatedAt: Date

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

    • OptionalupdatedAfter: Date

      Only return Blog Authors last updated after the specified time.

    • OptionalupdatedBefore: Date

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

    • Optionalproperty: string
    • Optional_options: Configuration

    Returns Promise<CollectionResponseWithTotalBlogAuthorForwardPaging>

  • 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

    • OptionalcreatedAt: Date

      Only return Blog Authors created at exactly the specified time.

    • OptionalcreatedAfter: Date

      Only return Blog Authors created after the specified time.

    • OptionalcreatedBefore: Date

      Only return Blog Authors created before the specified time.

    • OptionalupdatedAt: Date

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

    • OptionalupdatedAfter: Date

      Only return Blog Authors last updated after the specified time.

    • OptionalupdatedBefore: Date

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

    • Optionalproperty: string
    • Optional_options: Configuration

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

    • Optionalarchived: boolean

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

    • Optional_options: Configuration

    Returns Promise<BlogAuthor>

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

    • Optionalarchived: boolean

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

    • Optional_options: Configuration

    Returns Promise<HttpInfo<BlogAuthor>>