mod-finance-storage (v1)

https://github.com/folio-org/mod-finance-storage

Table of contents

mod-finance-storage (Funds)

CRUD APIs used to manage job number.

/finance-storage/job-number

GET /finance-storage/job-number

Get job number

GET /finance-storage/job-number
Query Parameters
  • type: required (string)

    The type of job number

Response 200

Body

Media type: application/json

Type: json

Content:

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "description": "Job number containing type and sequence number",
  "type": "object",
  "properties": {
    "type": {
      "description": "Type of the job",
      "type": "string",
      "enum": [
        "FundUpdateLogs"
      ]
    },
    "sequenceNumber": {
      "description": "Sequence number",
      "type": "string"
    }
  },
  "additionalProperties": false,
  "required": [
    "type",
    "sequenceNumber"
  ]
}

Response 400

Bad request, e.g. malformed request body or query parameter

Body

Media type: text/plain

Type: any

Example:

Unable to generate job line number

Response 500

Internal server error, e.g. due to misconfiguration

Body

Media type: text/plain

Type: any

Example:

Internal server error, contact Administrator