Extraction Microservice
Was this helpful?
Was this helpful?
Was this helpful?
PUT /gbds/v2/extraction-control/{id}/{enabled} HTTP/1.1
Host: <ip>:8085
Accept: */*
{
"data": [
{
"id": 1,
"url": "text",
"enabled": true,
"library": "GINGER",
"message": "text"
}
]
}DELETE /gbds/v2/extraction-control/remove HTTP/1.1
Host: <ip>:8085
Accept: */*
{
"data": [
{
"id": 1,
"url": "text",
"enabled": true,
"library": "GINGER",
"message": "text"
}
]
}GET /gbds/v2/extraction-control/list HTTP/1.1
Host: <ip>:8085
Accept: */*
{
"data": [
{
"id": 1,
"url": "text",
"enabled": true,
"library": "GINGER",
"message": "text"
}
]
}POST /gbds/v2/extraction-control/add HTTP/1.1
Host: <ip>:8085
Content-Type: application/json
Accept: */*
Content-Length: 30
{
"library": "GINGER",
"count": 1
}{
"data": [
{
"id": 1,
"url": "text",
"enabled": true,
"library": "GINGER",
"message": "text"
}
]
}