Query Parameters
- type: required(string)
The type of job number
HTTP status code 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"
]
}
HTTP status code 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
HTTP status code 500
Internal server error, e.g. due to misconfiguration
Body
Media type: text/plain
Type: any
Example:
Internal server error, contact Administrator