Financial Setting¶
Search System Financial Setting¶
HTTP Request
POST /api/system-financial-settings/search
📋 Description: Submits a request to search for financial settings within the Nakisa Portfolio Management Suite, enabling users to efficiently analyze portfolio and asset data related to real estate properties.
Parameters
Name |
In |
Type |
Required |
Description |
|---|---|---|---|---|
body |
body |
true |
Request body containing search criteria and filters for retrieving financial settings related to portfolio and asset analytics within the Nakisa Portfolio Management Suite. |
Body Parameters
1{
2 "idIn": [
3 0
4 ],
5 "idEqual": 0,
6 "idLike": "string",
7 "createdAtGreaterThanOrEqual": "2019-08-24T14:15:22Z",
8 "createdAtLessThanOrEqual": "2019-08-24T14:15:22Z",
9 "createdByLike": "string",
10 "createdByEqual": "string",
11 "modifiedAtGreaterThanOrEqual": "2019-08-24T14:15:22Z",
12 "modifiedAtLessThanOrEqual": "2019-08-24T14:15:22Z",
13 "modifiedByLike": "string",
14 "modifiedByEqual": "string",
15 "erpSystemDisplayIdEqual": "string",
16 "systemFinancialSettingTypeIn": [
17 "PARALLEL_CURRENCY"
18 ],
19 "valueEqual": "string",
20 "valueLike": "string",
21 "erpSystemIdEqual": 0
22}
Responses
Status |
Meaning |
Description |
Schema |
|---|---|---|---|
200 |
OK |
Example Responses
1{
2 "totalPages": 0,
3 "totalElements": 0,
4 "pageable": {
5 "paged": true,
6 "unpaged": true,
7 "pageNumber": 0,
8 "pageSize": 0,
9 "offset": 0,
10 "sort": {
11 "unsorted": true,
12 "sorted": true,
13 "empty": true
14 }
15 },
16 "numberOfElements": 0,
17 "size": 0,
18 "content": [
19 {
20 "id": 0,
21 "rowNumber": 0,
22 "rowIdentifier": "string",
23 "errors": [
24 "string"
25 ],
26 "linkedErrors": [
27 "string"
28 ],
29 "warnings": [
30 "string"
31 ],
32 "remarks": [
33 "string"
34 ],
35 "skipMessage": "string",
36 "erpSystemDisplayId": "string",
37 "parallelCurrency": true,
38 "cutOverDate": "2019-08-24",
39 "classificationPVSelectorMode": "EITHER",
40 "useRfcUserForSapPosting": true,
41 "defaultReversalReasonDisplayId": "string",
42 "defaultPaymentMode": "ADVANCE",
43 "costCenterAllocation": true,
44 "generateVendorInvoice": true,
45 "accountPayable": true,
46 "payableAccountType": "VENDOR_PAYABLE_ACCOUNT",
47 "sendProfitCenterBalanceSheetGL": true,
48 "externalUrl": "string",
49 "vendorAccountPosting": true,
50 "sendContractIdInItemIdInPostings": true,
51 "systemFinancialSettingType": "PARALLEL_CURRENCY",
52 "value": "string",
53 "erpSystemId": 0
54 }
55 ],
56 "number": 0,
57 "sort": {
58 "unsorted": true,
59 "sorted": true,
60 "empty": true
61 },
62 "first": true,
63 "last": true,
64 "empty": true
65}
Search Company Financial Setting¶
HTTP Request
POST /api/company-financial-settings/search
📋 Description: Submits a request to search for company financial settings within the Nakisa Portfolio Management Suite, enabling users to analyze portfolio and asset data related to real estate properties.
Parameters
Name |
In |
Type |
Required |
Description |
|---|---|---|---|---|
body |
body |
true |
Request body containing the financial settings data for portfolio analysis, including parameters for asset valuation and real estate property metrics. |
Body Parameters
1{
2 "idIn": [
3 0
4 ],
5 "idEqual": 0,
6 "idLike": "string",
7 "createdAtGreaterThanOrEqual": "2019-08-24T14:15:22Z",
8 "createdAtLessThanOrEqual": "2019-08-24T14:15:22Z",
9 "createdByLike": "string",
10 "createdByEqual": "string",
11 "modifiedAtGreaterThanOrEqual": "2019-08-24T14:15:22Z",
12 "modifiedAtLessThanOrEqual": "2019-08-24T14:15:22Z",
13 "modifiedByLike": "string",
14 "modifiedByEqual": "string",
15 "companySettingTypeIn": [
16 "CLASSIFICATION_PERCENTAGE_TERM"
17 ],
18 "valueEqual": "string",
19 "valueLike": "string",
20 "companyIdEqual": 0,
21 "companyDisplayIdLike": "string",
22 "erpSystemIdEqual": 0,
23 "erpSystemDisplayIdEqual": "string"
24}
Responses
Status |
Meaning |
Description |
Schema |
|---|---|---|---|
200 |
OK |
Example Responses
1{
2 "totalPages": 0,
3 "totalElements": 0,
4 "pageable": {
5 "paged": true,
6 "unpaged": true,
7 "pageNumber": 0,
8 "pageSize": 0,
9 "offset": 0,
10 "sort": {
11 "unsorted": true,
12 "sorted": true,
13 "empty": true
14 }
15 },
16 "numberOfElements": 0,
17 "size": 0,
18 "content": [
19 {
20 "id": 0,
21 "rowNumber": 0,
22 "rowIdentifier": "string",
23 "errors": [
24 "string"
25 ],
26 "linkedErrors": [
27 "string"
28 ],
29 "warnings": [
30 "string"
31 ],
32 "remarks": [
33 "string"
34 ],
35 "skipMessage": "string",
36 "companySettingType": "CLASSIFICATION_PERCENTAGE_TERM",
37 "value": "string",
38 "companyId": 0,
39 "companyDisplayId": "string",
40 "erpSystemId": 0,
41 "erpSystemDisplayId": "string"
42 }
43 ],
44 "number": 0,
45 "sort": {
46 "unsorted": true,
47 "sorted": true,
48 "empty": true
49 },
50 "first": true,
51 "last": true,
52 "empty": true
53}
Get Financial Setting¶
HTTP Request
GET /api/financial-settings
Parameters
Name |
In |
Type |
Required |
Description |
|---|---|---|---|---|
settingsType |
query |
string |
true |
none |
companyId |
query |
integer(int64) |
true |
none |
erpSystemId |
query |
integer(int64) |
false |
none |
Responses
Status |
Meaning |
Description |
Schema |
|---|---|---|---|
200 |
OK |
boolean |
Example Responses
1true