29 lines
471 B
Plaintext
29 lines
471 B
Plaintext
|
# 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}}
|
||
|
|