Skip to main content
POST
/
v2
/
ProcessingActivityCreate
Create processing activity
curl --request POST \
  --url http://localhost:3000/v2/ProcessingActivityCreate \
  --header 'Content-Type: application/json' \
  --header 'X-Bunker-Token: <api-key>' \
  --data '
{
  "activity": "<string>",
  "title": "<string>",
  "script": "<string>",
  "fulldesc": "<string>",
  "applicableto": "<string>",
  "request_metadata": {}
}
'
{
  "status": "ok"
}

Authorizations

X-Bunker-Token
string
header
required

API token for authentication

Body

application/json
activity
string
required

Unique identifier for the processing activity

title
string

Title of the processing activity

script
string

Script or description of the activity

fulldesc
string

Full description of the processing activity

applicableto
string

Who this activity applies to

request_metadata
object

Additional metadata for the request

Response

200 - application/json

Processing activity created successfully

status
string
Example:

"ok"