Retrieve Requests
Retrieve Requests matching given filters.
Authorizations:
REGARDS_OAUTH2
Request Body schema: application/jsonrequired
object (SearchRequestParameters) Filter requests using criteria | |
object (Pageable) Sorting and page configuration |
Responses
Request samples
- Payload
Content type
application/json
{- "filters": {
- "contentTypes": {
- "ignoreCase": true,
- "matchMode": "STRICT",
- "mode": "INCLUDE",
- "values": [
- "string"
]
}, - "creationDate": {
- "after": "2019-08-24T14:15:22Z",
- "before": "2019-08-24T14:15:22Z"
}, - "dispatchedWorkerType": "WorkerAcceptingContentType1",
- "ids": {
- "ignoreCase": true,
- "matchMode": "STRICT",
- "mode": "INCLUDE",
- "values": [
- 0
]
}, - "session": "Today_Mission1",
- "source": "CNES",
- "statuses": {
- "ignoreCase": true,
- "matchMode": "STRICT",
- "mode": "INCLUDE",
- "values": [
- "DISPATCHED"
]
}
}, - "pageable": {
- "page": 0,
- "size": 1,
- "sort": [
- "string"
]
}
}
Delete Requests
Delete Requests matching provided filters.
Authorizations:
REGARDS_OAUTH2
Request Body schema: application/jsonrequired
object (ValuesRestrictionString) Filter on Content types | |
object (DatesRangeRestriction) Request creation date restriction | |
dispatchedWorkerType | string Name of the Worker type matching the Request Content Type |
object (ValuesRestrictionLong) Filter on Request IDs | |
session | string Session that emitted the request |
source | string Source that emitted the request |
object (ValuesRestrictionRequestStatus) Filter on Request statuses |
Responses
Request samples
- Payload
Content type
application/json
{- "contentTypes": {
- "ignoreCase": true,
- "matchMode": "STRICT",
- "mode": "INCLUDE",
- "values": [
- "string"
]
}, - "creationDate": {
- "after": "2019-08-24T14:15:22Z",
- "before": "2019-08-24T14:15:22Z"
}, - "dispatchedWorkerType": "WorkerAcceptingContentType1",
- "ids": {
- "ignoreCase": true,
- "matchMode": "STRICT",
- "mode": "INCLUDE",
- "values": [
- 0
]
}, - "session": "Today_Mission1",
- "source": "CNES",
- "statuses": {
- "ignoreCase": true,
- "matchMode": "STRICT",
- "mode": "INCLUDE",
- "values": [
- "DISPATCHED"
]
}
}
Retry Requests
Retry Requests matching provided filters.
Authorizations:
REGARDS_OAUTH2
Request Body schema: application/jsonrequired
object (ValuesRestrictionString) Filter on Content types | |
object (DatesRangeRestriction) Request creation date restriction | |
dispatchedWorkerType | string Name of the Worker type matching the Request Content Type |
object (ValuesRestrictionLong) Filter on Request IDs | |
session | string Session that emitted the request |
source | string Source that emitted the request |
object (ValuesRestrictionRequestStatus) Filter on Request statuses |
Responses
Request samples
- Payload
Content type
application/json
{- "contentTypes": {
- "ignoreCase": true,
- "matchMode": "STRICT",
- "mode": "INCLUDE",
- "values": [
- "string"
]
}, - "creationDate": {
- "after": "2019-08-24T14:15:22Z",
- "before": "2019-08-24T14:15:22Z"
}, - "dispatchedWorkerType": "WorkerAcceptingContentType1",
- "ids": {
- "ignoreCase": true,
- "matchMode": "STRICT",
- "mode": "INCLUDE",
- "values": [
- 0
]
}, - "session": "Today_Mission1",
- "source": "CNES",
- "statuses": {
- "ignoreCase": true,
- "matchMode": "STRICT",
- "mode": "INCLUDE",
- "values": [
- "DISPATCHED"
]
}
}
Response samples
- 200
Content type
application/json
[- {
- "autorizedRoles": [
- {
- "authority": "string",
- "authorizedIpAdresses": [
- "string"
], - "roleName": "string"
}
], - "controllerSimpleName": "string",
- "fullPath": "string",
- "method": "GET",
- "resourceAccess": { },
- "resourceMappingId": "string"
}
]
update
Authorizations:
REGARDS_OAUTH2
path Parameters
name required | string |
Request Body schema: application/jsonrequired
defaultValue | object |
description | string |
name | string |
value | object |
Responses
Request samples
- Payload
Content type
application/json
{- "defaultValue": { },
- "description": "string",
- "name": "string",
- "value": { }
}