https://github.com/folio-org/mod-finance-storage
CRUD APIs used to manage job number.
Get job number
GET /finance-storage/job-number
The type of job number
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"
]
}
Bad request, e.g. malformed request body or query parameter
Media type: text/plain
Type: any
Example:
Unable to generate job line number
Internal server error, e.g. due to misconfiguration
Media type: text/plain
Type: any
Example:
Internal server error, contact Administrator