> ## Documentation Index
> Fetch the complete documentation index at: https://docs.plumaa.id/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Signature Requests Series



## OpenAPI

````yaml get /signature-request-timeseries
openapi: 3.0.1
info:
  title: Plumaa ID API
  version: 1.0.0
  description: Generated by SOFA
servers:
  - url: https://api.plumaa.id/rest/v1
    description: Production
  - url: https://api.staging.plumaa.id/rest/v1
    description: Staging
security:
  - apiKey: []
tags:
  - name: ApiKey
    description: ApiKey related operations
  - name: Certificate
    description: Certificate related operations
  - name: Issuer
    description: Issuer related operations
  - name: Organization
    description: Organization related operations
  - name: OrganizationLink
    description: OrganizationLink related operations
  - name: OrganizationMember
    description: OrganizationMember related operations
  - name: SignatureRequestInvite
    description: SignatureRequestInvite related operations
  - name: SignatureRequest
    description: SignatureRequest related operations
  - name: Subject
    description: Subject related operations
  - name: Witness
    description: Witness related operations
  - name: Other
    description: Other operations
  - name: Timeseries
    description: Timeseries related operations
  - name: PriceOracle
    description: Aggregated indexed price data
  - name: Wallet
    description: Wallet related operations
  - name: Endorsable
    description: Endorsable related operations
  - name: EndorseEvent
    description: Endorsable transfer event related operations
paths:
  /signature-request-timeseries:
    get:
      tags:
        - Timeseries
      operationId: signatureRequestTimeseries_query
      parameters:
        - name: granularity
          in: query
          required: true
          schema:
            enum:
              - day
              - hour
              - month
        - name: organization
          in: query
          required: false
          schema:
            $ref: '#/components/schemas/ObjectIDArg'
        - name: type
          in: query
          required: false
          schema:
            $ref: '#/components/schemas/ContentTypeArg'
        - name: timestamp
          in: query
          required: false
          schema:
            $ref: '#/components/schemas/DateRangeArg'
        - name: limit
          in: query
          required: false
          schema: {}
        - name: order
          in: query
          required: false
          schema:
            enum:
              - asc
              - desc
        - name: timezone
          in: query
          required: false
          schema: {}
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Timepoint'
components:
  schemas:
    ObjectIDArg:
      type: object
      properties:
        exists:
          type: boolean
          description: >-
            If provided, it will apply an $exists filter.

            See
            https://www.mongodb.com/docs/manual/reference/operator/query/exists/#-exists
        eq:
          description: >-
            If provided, it will apply an $eq filter.

            See
            https://www.mongodb.com/docs/manual/reference/operator/query/eq/#op._S_eq
        ne:
          description: >-
            If provided, it will apply a $ne filter.

            See
            https://www.mongodb.com/docs/manual/reference/operator/query/ne/#op._S_ne
        in:
          type: array
          items:
            description: >-
              A field whose value conforms with the standard mongodb object ID
              as described here:
              https://docs.mongodb.com/manual/reference/method/ObjectId/#ObjectId.
              Example: 5e5677d71bdc2ae76344968c
          description: >-
            If provided, it will apply an $in filter.

            See
            https://www.mongodb.com/docs/manual/reference/operator/query/in/#op._S_in
        nin:
          type: array
          items:
            description: >-
              A field whose value conforms with the standard mongodb object ID
              as described here:
              https://docs.mongodb.com/manual/reference/method/ObjectId/#ObjectId.
              Example: 5e5677d71bdc2ae76344968c
          description: >-
            If provided, it will apply a $nin filter.

            See
            https://www.mongodb.com/docs/manual/reference/operator/query/nin/#op._S_nin
      description: ObjectID matching arguments.
    ContentTypeArg:
      type: object
      properties:
        exists:
          type: boolean
          description: >-
            If provided, it will apply an $exists filter.

            See
            https://www.mongodb.com/docs/manual/reference/operator/query/exists/#-exists
        eq:
          type: string
          enum:
            - RawContent
            - IOUContent
            - JSONContent
            - PDFContent
          description: >-
            If provided, it will apply an $eq filter.

            See
            https://www.mongodb.com/docs/manual/reference/operator/query/eq/#op._S_eq
        ne:
          type: string
          enum:
            - RawContent
            - IOUContent
            - JSONContent
            - PDFContent
          description: >-
            If provided, it will apply a $ne filter.

            See
            https://www.mongodb.com/docs/manual/reference/operator/query/ne/#op._S_ne
        in:
          type: array
          items:
            type: string
            enum:
              - RawContent
              - IOUContent
              - JSONContent
              - PDFContent
          description: >-
            If provided, it will apply an $in filter.

            See
            https://www.mongodb.com/docs/manual/reference/operator/query/in/#op._S_in
        nin:
          type: array
          items:
            type: string
            enum:
              - RawContent
              - IOUContent
              - JSONContent
              - PDFContent
          description: >-
            If provided, it will apply a $nin filter.

            See
            https://www.mongodb.com/docs/manual/reference/operator/query/nin/#op._S_nin
      description: ContentType matching arguments.
    DateRangeArg:
      type: object
      properties:
        exists:
          type: boolean
          description: If provided, it will apply an $exists filter.
        lte:
          description: Lower than or equal to.
        gte:
          description: Greater than or equal to.
      description: Date range arguments.
    Timepoint:
      type: object
      required:
        - mark
        - count
      properties:
        mark:
          description: The bucket mark for the creation timepoint, defined by granularity.
        count:
          description: Amount of signature requests created in the bucket.
      description: Timepoint for a time series.
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer

````