mod-finance-storage API documentation version v2
https://github.com/folio-org/mod-finance-storage
mod-finance-storage (Fund Distributions)
CRUD APIs used to manage fund-distributions.
/finance-storage/fund-distributions
Collection of fund-distribution items.
Get list of fund distributions
Create a new fund-distribution item.
get /finance-storage/fund-distributions
Get list of fund distributions
Query Parameters
- query: (string)
A query expressed as a CQL string (see dev.folio.org/reference/glossary#cql) using valid searchable fields. The first example below shows the general form of a full CQL query, but those fields might not be relevant in this context.
with valid searchable fields: for example code
Example:
(username=="ab*" or personal.firstName=="ab*" or personal.lastName=="ab*") and active=="true" sortby personal.lastName personal.firstName barcode ["code", "MEDGRANT", "="] - offset: (integer - default: 0 - minimum: 0 - maximum: 2147483647)
Skip over a number of elements by specifying an offset value for the query
Example:
0 - limit: (integer - default: 10 - minimum: 0 - maximum: 2147483647)
Limit the number of elements returned in the response
Example:
10 - lang: (string - default: en - pattern: [a-zA-Z]{2})
Requested language. Optional. [lang=en]
HTTP status code 200
Returns a list of fund-distribution items
Body
Media type: application/json
Type: json
Content:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A collection of fund distributions",
"type": "object",
"properties": {
"distributions": {
"description": "The list of objects contained in this collection",
"type": "array",
"id": "fund_distributions",
"items": {
"type": "object",
"$ref": "fund_distribution.json"
}
},
"totalRecords": {
"description": "The number of object contained in this collection",
"type": "integer"
}
},
"additionalProperties": false,
"required": [
"distributions",
"totalRecords"
]
}
Example:
{
"distributions": [
{
"id": "4c58e097-3bef-17f9-b4b3-e1fa4ccbf12d",
"amount": 25,
"currency": "USD",
"percent": 100,
"sourceType": "PO Line",
"sourceId": "906eb7a4-8bbc-1ccf-9caf-de909eabeedd",
"budgetId": "47ac60b4-159d-4e1c-9acb-8293df67d16d"
}
],
"totalRecords": 1
}
HTTP status code 400
Bad request, e.g. malformed request body or query parameter. Details of the error (e.g. name of the parameter or line/character number with malformed data) provided in the response.
Body
Media type: text/plain
Type: any
Example:
unable to list fund-distributions -- malformed parameter 'query', syntax error at column 6HTTP status code 401
Not authorized to perform requested action
Body
Media type: text/plain
Type: any
Example:
unable to list fund-distributions -- unauthorizedHTTP status code 422
Validation errors
Body
Media type: application/json
Type: json
Content:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A set of errors",
"type": "object",
"properties": {
"errors": {
"description": "List of errors",
"id": "errors",
"type": "array",
"items": {
"type": "object",
"$ref": "error.schema"
}
},
"total_records": {
"description": "Total number of errors",
"type": "integer"
}
}
}
Example:
{
"errors": [
{
"message": "may not be null",
"type": "1",
"code": "-1",
"parameters": [
{
"key": "moduleTo",
"value": "null"
}
]
}
]
}
HTTP status code 500
Internal server error, e.g. due to misconfiguration
Body
Media type: text/plain
Type: any
Example:
internal server error, contact administratorpost /finance-storage/fund-distributions
Create a new fund-distribution item.
Query Parameters
- lang: (string - default: en - pattern: [a-zA-Z]{2})
Requested language. Optional. [lang=en]
Body
Media type: application/json
Type: json
Content:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A distribution of fund resources",
"type": "object",
"properties": {
"id": {
"type": ["string", "null"],
"description": "UUID",
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[1-5][a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$"
},
"amount": {
"description": "The amount of this fund distribution",
"type": "number"
},
"currency": {
"description": "The currency used for this fund distribution",
"type": "string"
},
"percent": {
"description": "The percent of this fund distribution",
"type": "number"
},
"sourceType": {
"description": "The type of source of this fund distribution",
"type": "string"
},
"sourceId": {
"type": ["string", "null"],
"description": "UUID",
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[1-5][a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$"
},
"budgetId": {
"type": ["string", "null"],
"description": "UUID",
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[1-5][a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$"
}
},
"additionalProperties": false,
"required": [
"amount"
]
}
Example:
{
"id": "4c58e097-3bef-17f9-B4B3-e1Fa4CCbF12D",
"amount": 25,
"currency": "USD",
"percent": 100,
"sourceType": "PO_Line",
"sourceId": "906eb7a4-8bbc-1ccf-8caf-de909eabeedd",
"budgetId": "47ac60b4-159d-4e1c-9acb-8293df67d16d"
}
HTTP status code 201
Returns a newly created item, with server-controlled fields like 'id' populated
Headers
- Location: required (string)
URI to the created fund-distribution item
Body
Media type: application/json
Type: any
Example:
{
"id": "4c58e097-3bef-17f9-B4B3-e1Fa4CCbF12D",
"amount": 25,
"currency": "USD",
"percent": 100,
"sourceType": "PO_Line",
"sourceId": "906eb7a4-8bbc-1ccf-8caf-de909eabeedd",
"budgetId": "47ac60b4-159d-4e1c-9acb-8293df67d16d"
}
HTTP status code 400
Bad request, e.g. malformed request body or query parameter. Details of the error (e.g. name of the parameter or line/character number with malformed data) provided in the response.
Body
Media type: text/plain
Type: any
Example:
"unable to add fund-distribution -- malformed JSON at 13:3"
HTTP status code 401
Not authorized to perform requested action
Body
Media type: text/plain
Type: any
Example:
unable to create fund-distributions -- unauthorizedHTTP status code 422
Validation errors
Body
Media type: application/json
Type: json
Content:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A set of errors",
"type": "object",
"properties": {
"errors": {
"description": "List of errors",
"id": "errors",
"type": "array",
"items": {
"type": "object",
"$ref": "error.schema"
}
},
"total_records": {
"description": "Total number of errors",
"type": "integer"
}
}
}
Example:
{
"errors": [
{
"message": "may not be null",
"type": "1",
"code": "-1",
"parameters": [
{
"key": "moduleTo",
"value": "null"
}
]
}
]
}
HTTP status code 500
Internal server error, e.g. due to misconfiguration
Body
Media type: text/plain
Type: any
Example:
Internal server error, contact administratorEntity representing a fund-distribution
Retrieve fund-distribution item with given {fund-distributionId}
Delete fund-distribution item with given {fund-distributionId}
Update fund-distribution item with given {fund-distributionId}
get /finance-storage/fund-distributions/{id}
Retrieve fund-distribution item with given {fund-distributionId}
URI Parameters
- id: required (string - pattern: ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$)
The UUID of a fund distribution
Query Parameters
- lang: (string - default: en - pattern: [a-zA-Z]{2})
Requested language. Optional. [lang=en]
HTTP status code 200
Returns item with a given ID
Body
Media type: application/json
Type: json
Content:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A distribution of fund resources",
"type": "object",
"properties": {
"id": {
"type": ["string", "null"],
"description": "UUID",
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[1-5][a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$"
},
"amount": {
"description": "The amount of this fund distribution",
"type": "number"
},
"currency": {
"description": "The currency used for this fund distribution",
"type": "string"
},
"percent": {
"description": "The percent of this fund distribution",
"type": "number"
},
"sourceType": {
"description": "The type of source of this fund distribution",
"type": "string"
},
"sourceId": {
"type": ["string", "null"],
"description": "UUID",
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[1-5][a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$"
},
"budgetId": {
"type": ["string", "null"],
"description": "UUID",
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[1-5][a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$"
}
},
"additionalProperties": false,
"required": [
"amount"
]
}
Example:
{
"id": "4c58e097-3bef-17f9-B4B3-e1Fa4CCbF12D",
"amount": 25,
"currency": "USD",
"percent": 100,
"sourceType": "PO_Line",
"sourceId": "906eb7a4-8bbc-1ccf-8caf-de909eabeedd",
"budgetId": "47ac60b4-159d-4e1c-9acb-8293df67d16d"
}
HTTP status code 404
Item with a given ID not found
Body
Media type: text/plain
Type: any
Example:
"fund-distribution not found"
HTTP status code 422
Validation errors
Body
Media type: application/json
Type: json
Content:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A set of errors",
"type": "object",
"properties": {
"errors": {
"description": "List of errors",
"id": "errors",
"type": "array",
"items": {
"type": "object",
"$ref": "error.schema"
}
},
"total_records": {
"description": "Total number of errors",
"type": "integer"
}
}
}
Example:
{
"errors": [
{
"message": "may not be null",
"type": "1",
"code": "-1",
"parameters": [
{
"key": "moduleTo",
"value": "null"
}
]
}
]
}
HTTP status code 500
Internal server error, e.g. due to misconfiguration
Body
Media type: text/plain
Type: any
Example:
internal server error, contact administratordelete /finance-storage/fund-distributions/{id}
Delete fund-distribution item with given {fund-distributionId}
URI Parameters
- id: required (string - pattern: ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$)
The UUID of a fund distribution
Query Parameters
- lang: (string - default: en - pattern: [a-zA-Z]{2})
Requested language. Optional. [lang=en]
HTTP status code 204
Item deleted successfully
HTTP status code 400
Bad request, e.g. malformed request body or query parameter. Details of the error (e.g. name of the parameter or line/character number with malformed data) provided in the response.
Body
Media type: text/plain
Type: any
Example:
"unable to delete fund-distribution -- constraint violation"
HTTP status code 404
Item with a given ID not found
Body
Media type: text/plain
Type: any
Example:
"fund-distribution not found"
HTTP status code 422
Validation errors
Body
Media type: application/json
Type: json
Content:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A set of errors",
"type": "object",
"properties": {
"errors": {
"description": "List of errors",
"id": "errors",
"type": "array",
"items": {
"type": "object",
"$ref": "error.schema"
}
},
"total_records": {
"description": "Total number of errors",
"type": "integer"
}
}
}
Example:
{
"errors": [
{
"message": "may not be null",
"type": "1",
"code": "-1",
"parameters": [
{
"key": "moduleTo",
"value": "null"
}
]
}
]
}
HTTP status code 500
Internal server error, e.g. due to misconfiguration
Body
Media type: text/plain
Type: any
Example:
Internal server error, contact administratorput /finance-storage/fund-distributions/{id}
Update fund-distribution item with given {fund-distributionId}
URI Parameters
- id: required (string - pattern: ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$)
The UUID of a fund distribution
Query Parameters
- lang: (string - default: en - pattern: [a-zA-Z]{2})
Requested language. Optional. [lang=en]
Body
Media type: application/json
Type: json
Content:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A distribution of fund resources",
"type": "object",
"properties": {
"id": {
"type": ["string", "null"],
"description": "UUID",
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[1-5][a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$"
},
"amount": {
"description": "The amount of this fund distribution",
"type": "number"
},
"currency": {
"description": "The currency used for this fund distribution",
"type": "string"
},
"percent": {
"description": "The percent of this fund distribution",
"type": "number"
},
"sourceType": {
"description": "The type of source of this fund distribution",
"type": "string"
},
"sourceId": {
"type": ["string", "null"],
"description": "UUID",
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[1-5][a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$"
},
"budgetId": {
"type": ["string", "null"],
"description": "UUID",
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[1-5][a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$"
}
},
"additionalProperties": false,
"required": [
"amount"
]
}
Example:
{
"id": "4c58e097-3bef-17f9-B4B3-e1Fa4CCbF12D",
"amount": 25,
"currency": "USD",
"percent": 100,
"sourceType": "PO_Line",
"sourceId": "906eb7a4-8bbc-1ccf-8caf-de909eabeedd",
"budgetId": "47ac60b4-159d-4e1c-9acb-8293df67d16d"
}
HTTP status code 204
Item successfully updated
HTTP status code 400
Bad request, e.g. malformed request body or query parameter. Details of the error (e.g. name of the parameter or line/character number with malformed data) provided in the response.
Body
Media type: text/plain
Type: any
Example:
"unable to update fund-distribution -- malformed JSON at 13:4"
HTTP status code 404
Item with a given ID not found
Body
Media type: text/plain
Type: any
Example:
"fund-distribution not found"
HTTP status code 422
Validation errors
Body
Media type: application/json
Type: json
Content:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A set of errors",
"type": "object",
"properties": {
"errors": {
"description": "List of errors",
"id": "errors",
"type": "array",
"items": {
"type": "object",
"$ref": "error.schema"
}
},
"total_records": {
"description": "Total number of errors",
"type": "integer"
}
}
}
Example:
{
"errors": [
{
"message": "may not be null",
"type": "1",
"code": "-1",
"parameters": [
{
"key": "moduleTo",
"value": "null"
}
]
}
]
}
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