API Callback Log Entry¶
Get API Callback Log Entries¶
HTTP Request
GET /api/api-callback-log-entries
📋 Description: Fetches callback log entries related to portfolio and asset management within the Nakisa Portfolio Management Suite, providing insights for analytics and real estate property evaluation.
Parameters
Name |
In |
Type |
Required |
Description |
|---|---|---|---|---|
pageable |
query |
true |
Indicates whether the results of the API call for portfolio analytics and asset management can be paginated, enhancing the retrieval of callback log entries in the Nakisa Portfolio Management Suite. |
Responses
Status |
Meaning |
Description |
Schema |
|---|---|---|---|
200 |
OK |
Example Responses
1{
2 "_embedded": {
3 "apiCallbackLogEntries": [
4 {
5 "createdBy": "string",
6 "lastModifiedBy": "string",
7 "createdDate": "2019-08-24T14:15:22Z",
8 "lastModifiedDate": "2019-08-24T14:15:22Z",
9 "archived": true,
10 "externalId": "string",
11 "id": 0,
12 "endpoint": "string",
13 "topic": "string",
14 "objectId": "string",
15 "method": "string",
16 "status": "CREATED",
17 "statusMessage": "string",
18 "subscriberUrl": "string",
19 "statusCode": "string"
20 }
21 ]
22 },
23 "page": {
24 "size": 0,
25 "totalElements": 0,
26 "totalPages": 0,
27 "number": 0
28 }
29}
Get API Callback Log Entry¶
HTTP Request
GET /api/api-callback-log-entries/{id}
📋 Description: Fetches detailed information about a specific callback log entry identified by its unique ID, facilitating analytics and reporting within the Nakisa Portfolio Management Suite for enhanced portfolio and asset management.
Parameters
Name |
In |
Type |
Required |
Description |
|---|---|---|---|---|
id |
path |
integer(int64) |
true |
Unique identifier for the resource |
Responses
Status |
Meaning |
Description |
Schema |
|---|---|---|---|
200 |
OK |
Example Responses
1{
2 "createdBy": "string",
3 "lastModifiedBy": "string",
4 "createdDate": "2019-08-24T14:15:22Z",
5 "lastModifiedDate": "2019-08-24T14:15:22Z",
6 "archived": true,
7 "externalId": "string",
8 "id": 0,
9 "endpoint": "string",
10 "topic": "string",
11 "objectId": "string",
12 "method": "string",
13 "status": "CREATED",
14 "statusMessage": "string",
15 "subscriberUrl": "string",
16 "statusCode": "string"
17}