Create Search algorithm


                https://api.ocamba.com/v2/adex/search-algos
            

Creates a new algorithm object


Name
Description
descriptionstring
A more detailed description of the algorithm. Maximum 2000 characters.


Example: This is my first algorithm.

metadataobject

Name
Description
keystring
Key for the metadata.
Each key must be unique within the metadata object. Maximum 64 characters.


Example: key1

valuestring
Value for the metadata. Maximum 64 characters.


Example: value1

namestringrequired
Name of the algorithm.


Example: example_campaign_algorithm
200 Arrow
{
  "name":"example algorithm",
  "description":"this goes description",
  "metadata": {
    "key1": "value1",
    "key2": "value2",
    "key3": "value3"
  }   
}
201 Arrow
{
  "id": "1000251",
  "company_id": "1331131",
  "name": "example algorithm",
  "type": "custom",
  "description": "this goes description"
  "metadata": {
    "key1": "value1",
    "key2": "value2",
    "key3": "value3"
  }   
}