29 lines
471 B
HTTP
29 lines
471 B
HTTP
# Output Service - RDB
|
|
# This is the feature extraction interface of the Birbnetes system.
|
|
|
|
###
|
|
|
|
# Get all negative decision objects
|
|
GET {{host}}/output/filter/negative
|
|
|
|
###
|
|
|
|
# Get positive decision objects
|
|
GET {{host}}/output/filter/positive
|
|
|
|
###
|
|
|
|
# Get decision before a date
|
|
GET {{host}}/output/after/{{param_dateAfter}}
|
|
|
|
###
|
|
|
|
# Get decision before a date
|
|
GET {{host}}/output/before/{{param_dateBefore}}
|
|
|
|
###
|
|
|
|
# Get decision by ID
|
|
GET {{host}}/output/{{param_tagID}}
|
|
|