Services

List Services

get

Gets a page of service objects.

Args: filter_model: Filter model used for pagination, sorting, filtering. hydrate: Flag deciding whether to hydrate the output model(s) by including metadata fields in the response.

Returns: Page of service objects.

Authorizations
Query parameters
hydratebooleanOptionalDefault: false
sort_bystringOptionalDefault: created
logical_operatorstring · enumOptional

Logical Ops to use to combine filters on list methods.

Default: andPossible values:
pageinteger · min: 1OptionalDefault: 1
sizeinteger · min: 1 · max: 10000OptionalDefault: 20
idany ofOptional
string · uuidOptional
or
stringOptional
or
nullOptional
createdany ofOptional
string · date-timeOptional
or
stringOptional
or
nullOptional
updatedany ofOptional
string · date-timeOptional
or
stringOptional
or
nullOptional
scope_userany ofOptional
string · uuidOptional
or
nullOptional
userany ofOptional
string · uuidOptional
or
stringOptional
or
nullOptional
projectany ofOptional
string · uuidOptional
or
stringOptional
or
nullOptional
nameany ofOptional
stringOptional
or
nullOptional
typeany ofOptional
stringOptional
or
nullOptional
flavorany ofOptional
stringOptional
or
nullOptional
configany ofOptional
string · binaryOptional
or
nullOptional
pipeline_nameany ofOptional
stringOptional
or
nullOptional
pipeline_step_nameany ofOptional
stringOptional
or
nullOptional
runningany ofOptional
booleanOptional
or
nullOptional
model_version_idany ofOptional
string · uuidOptional
or
stringOptional
or
nullOptional
pipeline_run_idany ofOptional
string · uuidOptional
or
stringOptional
or
nullOptional
Responses
200

Successful Response

application/json
get
GET /api/v1/services HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "index": 1,
  "max_size": 1,
  "total_pages": 1,
  "total": 1,
  "items": [
    {
      "body": {
        "created": "2025-09-18T23:01:06.017Z",
        "updated": "2025-09-18T23:01:06.017Z",
        "user_id": "123e4567-e89b-12d3-a456-426614174000",
        "project_id": "123e4567-e89b-12d3-a456-426614174000",
        "service_type": {
          "type": "text",
          "flavor": "text",
          "name": "",
          "description": "",
          "logo_url": ""
        },
        "labels": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        },
        "state": "inactive"
      },
      "metadata": {
        "service_source": "text",
        "admin_state": "inactive",
        "config": {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        },
        "status": {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        },
        "endpoint": {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        },
        "prediction_url": "text",
        "health_check_url": "text"
      },
      "resources": {
        "user": {
          "body": {
            "created": "2025-09-18T23:01:06.017Z",
            "updated": "2025-09-18T23:01:06.017Z",
            "active": false,
            "activation_token": "text",
            "full_name": "",
            "email_opted_in": true,
            "is_service_account": true,
            "is_admin": true,
            "default_project_id": "123e4567-e89b-12d3-a456-426614174000",
            "avatar_url": "text"
          },
          "metadata": {
            "email": "",
            "external_user_id": "123e4567-e89b-12d3-a456-426614174000",
            "user_metadata": {
              "ANY_ADDITIONAL_PROPERTY": "anything"
            }
          },
          "resources": {
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "id": "123e4567-e89b-12d3-a456-426614174000",
          "permission_denied": false,
          "name": "text"
        },
        "pipeline_run": "[Circular Reference]",
        "model_version": "[Circular Reference]",
        "ANY_ADDITIONAL_PROPERTY": "anything"
      },
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "permission_denied": false,
      "name": "text"
    }
  ]
}

Create Service

post

Creates a new service.

Args: service: The service to create. project_name_or_id: Optional name or ID of the project.

Returns: The created service.

Authorizations
Query parameters
project_name_or_idany ofOptional
stringOptional
or
string · uuidOptional
or
nullOptional
Body

Request model for services.

userany ofOptional
string · uuidOptional
or
nullOptional
projectstring · uuidRequired
namestring · max: 255Required
service_sourceany ofOptional

The fully qualified class name of the service implementation.

stringOptional
or
nullOptional
admin_stateany ofOptional

The administrative state of the service, e.g., ACTIVE, INACTIVE.

string · enumOptional

Possible states for the service and service endpoint.

Possible values:
or
nullOptional
labelsany ofOptional
or
nullOptional
statusany ofOptional
or
nullOptional
endpointany ofOptional
or
nullOptional
prediction_urlany ofOptional
stringOptional
or
nullOptional
health_check_urlany ofOptional
stringOptional
or
nullOptional
model_version_idany ofOptional
string · uuidOptional
or
nullOptional
pipeline_run_idany ofOptional
string · uuidOptional
or
nullOptional
Responses
200

Successful Response

application/json
post
POST /api/v1/services HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 602

{
  "user": "123e4567-e89b-12d3-a456-426614174000",
  "project": "123e4567-e89b-12d3-a456-426614174000",
  "name": "text",
  "service_type": {
    "type": "text",
    "flavor": "text",
    "name": "",
    "description": "",
    "logo_url": ""
  },
  "service_source": "text",
  "admin_state": "inactive",
  "config": {
    "ANY_ADDITIONAL_PROPERTY": "anything"
  },
  "labels": {
    "ANY_ADDITIONAL_PROPERTY": "text"
  },
  "status": {
    "ANY_ADDITIONAL_PROPERTY": "anything"
  },
  "endpoint": {
    "ANY_ADDITIONAL_PROPERTY": "anything"
  },
  "prediction_url": "text",
  "health_check_url": "text",
  "model_version_id": "123e4567-e89b-12d3-a456-426614174000",
  "pipeline_run_id": "123e4567-e89b-12d3-a456-426614174000"
}
{
  "body": {
    "created": "2025-09-18T23:01:06.017Z",
    "updated": "2025-09-18T23:01:06.017Z",
    "user_id": "123e4567-e89b-12d3-a456-426614174000",
    "project_id": "123e4567-e89b-12d3-a456-426614174000",
    "service_type": {
      "type": "text",
      "flavor": "text",
      "name": "",
      "description": "",
      "logo_url": ""
    },
    "labels": {
      "ANY_ADDITIONAL_PROPERTY": "text"
    },
    "state": "inactive"
  },
  "metadata": {
    "service_source": "text",
    "admin_state": "inactive",
    "config": {
      "ANY_ADDITIONAL_PROPERTY": "anything"
    },
    "status": {
      "ANY_ADDITIONAL_PROPERTY": "anything"
    },
    "endpoint": {
      "ANY_ADDITIONAL_PROPERTY": "anything"
    },
    "prediction_url": "text",
    "health_check_url": "text"
  },
  "resources": {
    "user": {
      "body": {
        "created": "2025-09-18T23:01:06.017Z",
        "updated": "2025-09-18T23:01:06.017Z",
        "active": false,
        "activation_token": "text",
        "full_name": "",
        "email_opted_in": true,
        "is_service_account": true,
        "is_admin": true,
        "default_project_id": "123e4567-e89b-12d3-a456-426614174000",
        "avatar_url": "text"
      },
      "metadata": {
        "email": "",
        "external_user_id": "123e4567-e89b-12d3-a456-426614174000",
        "user_metadata": {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        }
      },
      "resources": {
        "ANY_ADDITIONAL_PROPERTY": "anything"
      },
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "permission_denied": false,
      "name": "text"
    },
    "pipeline_run": {
      "body": "[Circular Reference]",
      "metadata": {
        "run_metadata": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        },
        "config": {
          "enable_cache": true,
          "enable_artifact_metadata": true,
          "enable_artifact_visualization": true,
          "enable_step_logs": true,
          "enable_pipeline_logs": true,
          "execution_mode": "continue_on_failure",
          "settings": {
            "ANY_ADDITIONAL_PROPERTY": {
              "ANY_ADDITIONAL_PROPERTY": "anything"
            }
          },
          "tags": [
            "text"
          ],
          "extra": {
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "failure_hook_source": {
            "module": "text",
            "attribute": "text",
            "type": "user",
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "success_hook_source": {
            "module": "text",
            "attribute": "text",
            "type": "user",
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "model": {
            "name": "text",
            "license": "text",
            "description": "text",
            "audience": "text",
            "use_cases": "text",
            "limitations": "text",
            "trade_offs": "text",
            "ethics": "text",
            "tags": [
              "text"
            ],
            "version": "none",
            "save_models_to_registry": true,
            "model_version_id": "123e4567-e89b-12d3-a456-426614174000",
            "suppress_class_validation_warnings": false
          },
          "parameters": {
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "retry": {
            "max_retries": 1,
            "delay": 0,
            "backoff": 0
          },
          "substitutions": {
            "ANY_ADDITIONAL_PROPERTY": "text"
          },
          "cache_policy": {
            "include_step_code": true,
            "include_step_parameters": true,
            "include_artifact_values": true,
            "include_artifact_ids": true,
            "ignored_inputs": [
              "text"
            ]
          },
          "name": "text"
        },
        "start_time": "2025-09-18T23:01:06.017Z",
        "end_time": "2025-09-18T23:01:06.017Z",
        "client_environment": {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        },
        "orchestrator_environment": {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        },
        "orchestrator_run_id": "text",
        "code_path": "text",
        "template_id": "123e4567-e89b-12d3-a456-426614174000",
        "is_templatable": false
      },
      "resources": "[Circular Reference]",
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "permission_denied": false,
      "name": "text"
    },
    "model_version": {
      "body": {
        "created": "2025-09-18T23:01:06.017Z",
        "updated": "2025-09-18T23:01:06.017Z",
        "user_id": "123e4567-e89b-12d3-a456-426614174000",
        "project_id": "123e4567-e89b-12d3-a456-426614174000",
        "stage": "text",
        "number": 1,
        "model": {
          "body": {
            "created": "2025-09-18T23:01:06.017Z",
            "updated": "2025-09-18T23:01:06.017Z",
            "user_id": "123e4567-e89b-12d3-a456-426614174000",
            "project_id": "123e4567-e89b-12d3-a456-426614174000"
          },
          "metadata": {
            "license": "text",
            "description": "text",
            "audience": "text",
            "use_cases": "text",
            "limitations": "text",
            "trade_offs": "text",
            "ethics": "text",
            "save_models_to_registry": true
          },
          "resources": {
            "user": {
              "body": {
                "created": "2025-09-18T23:01:06.017Z",
                "updated": "2025-09-18T23:01:06.017Z",
                "active": false,
                "activation_token": "text",
                "full_name": "",
                "email_opted_in": true,
                "is_service_account": true,
                "is_admin": true,
                "default_project_id": "123e4567-e89b-12d3-a456-426614174000",
                "avatar_url": "text"
              },
              "metadata": {
                "email": "",
                "external_user_id": "123e4567-e89b-12d3-a456-426614174000",
                "user_metadata": {
                  "ANY_ADDITIONAL_PROPERTY": "anything"
                }
              },
              "resources": {
                "ANY_ADDITIONAL_PROPERTY": "anything"
              },
              "id": "123e4567-e89b-12d3-a456-426614174000",
              "permission_denied": false,
              "name": "text"
            },
            "tags": [
              {
                "body": {
                  "created": "2025-09-18T23:01:06.017Z",
                  "updated": "2025-09-18T23:01:06.017Z",
                  "user_id": "123e4567-e89b-12d3-a456-426614174000",
                  "color": "grey",
                  "exclusive": true
                },
                "metadata": {
                  "tagged_count": 1
                },
                "resources": {
                  "user": {
                    "body": {
                      "created": "2025-09-18T23:01:06.017Z",
                      "updated": "2025-09-18T23:01:06.017Z",
                      "active": false,
                      "activation_token": "text",
                      "full_name": "",
                      "email_opted_in": true,
                      "is_service_account": true,
                      "is_admin": true,
                      "default_project_id": "123e4567-e89b-12d3-a456-426614174000",
                      "avatar_url": "text"
                    },
                    "metadata": {
                      "email": "",
                      "external_user_id": "123e4567-e89b-12d3-a456-426614174000",
                      "user_metadata": {
                        "ANY_ADDITIONAL_PROPERTY": "anything"
                      }
                    },
                    "resources": {
                      "ANY_ADDITIONAL_PROPERTY": "anything"
                    },
                    "id": "123e4567-e89b-12d3-a456-426614174000",
                    "permission_denied": false,
                    "name": "text"
                  },
                  "ANY_ADDITIONAL_PROPERTY": "anything"
                },
                "id": "123e4567-e89b-12d3-a456-426614174000",
                "permission_denied": false,
                "name": "text"
              }
            ],
            "latest_version_name": "text",
            "latest_version_id": "123e4567-e89b-12d3-a456-426614174000",
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "id": "123e4567-e89b-12d3-a456-426614174000",
          "permission_denied": false,
          "name": "text"
        }
      },
      "metadata": {
        "description": "text",
        "run_metadata": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        }
      },
      "resources": "[Circular Reference]",
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "permission_denied": false,
      "name": "text"
    },
    "ANY_ADDITIONAL_PROPERTY": "anything"
  },
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "permission_denied": false,
  "name": "text"
}

Get Service

get

Gets a specific service using its unique ID.

Args: service_id: The ID of the service to get. hydrate: Flag deciding whether to hydrate the output model(s) by including metadata fields in the response.

Returns: A specific service object.

Authorizations
Path parameters
service_idstring · uuidRequired
Query parameters
hydratebooleanOptionalDefault: true
Responses
200

Successful Response

application/json
get
GET /api/v1/services/{service_id} HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "body": {
    "created": "2025-09-18T23:01:06.017Z",
    "updated": "2025-09-18T23:01:06.017Z",
    "user_id": "123e4567-e89b-12d3-a456-426614174000",
    "project_id": "123e4567-e89b-12d3-a456-426614174000",
    "service_type": {
      "type": "text",
      "flavor": "text",
      "name": "",
      "description": "",
      "logo_url": ""
    },
    "labels": {
      "ANY_ADDITIONAL_PROPERTY": "text"
    },
    "state": "inactive"
  },
  "metadata": {
    "service_source": "text",
    "admin_state": "inactive",
    "config": {
      "ANY_ADDITIONAL_PROPERTY": "anything"
    },
    "status": {
      "ANY_ADDITIONAL_PROPERTY": "anything"
    },
    "endpoint": {
      "ANY_ADDITIONAL_PROPERTY": "anything"
    },
    "prediction_url": "text",
    "health_check_url": "text"
  },
  "resources": {
    "user": {
      "body": {
        "created": "2025-09-18T23:01:06.017Z",
        "updated": "2025-09-18T23:01:06.017Z",
        "active": false,
        "activation_token": "text",
        "full_name": "",
        "email_opted_in": true,
        "is_service_account": true,
        "is_admin": true,
        "default_project_id": "123e4567-e89b-12d3-a456-426614174000",
        "avatar_url": "text"
      },
      "metadata": {
        "email": "",
        "external_user_id": "123e4567-e89b-12d3-a456-426614174000",
        "user_metadata": {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        }
      },
      "resources": {
        "ANY_ADDITIONAL_PROPERTY": "anything"
      },
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "permission_denied": false,
      "name": "text"
    },
    "pipeline_run": {
      "body": "[Circular Reference]",
      "metadata": {
        "run_metadata": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        },
        "config": {
          "enable_cache": true,
          "enable_artifact_metadata": true,
          "enable_artifact_visualization": true,
          "enable_step_logs": true,
          "enable_pipeline_logs": true,
          "execution_mode": "continue_on_failure",
          "settings": {
            "ANY_ADDITIONAL_PROPERTY": {
              "ANY_ADDITIONAL_PROPERTY": "anything"
            }
          },
          "tags": [
            "text"
          ],
          "extra": {
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "failure_hook_source": {
            "module": "text",
            "attribute": "text",
            "type": "user",
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "success_hook_source": {
            "module": "text",
            "attribute": "text",
            "type": "user",
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "model": {
            "name": "text",
            "license": "text",
            "description": "text",
            "audience": "text",
            "use_cases": "text",
            "limitations": "text",
            "trade_offs": "text",
            "ethics": "text",
            "tags": [
              "text"
            ],
            "version": "none",
            "save_models_to_registry": true,
            "model_version_id": "123e4567-e89b-12d3-a456-426614174000",
            "suppress_class_validation_warnings": false
          },
          "parameters": {
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "retry": {
            "max_retries": 1,
            "delay": 0,
            "backoff": 0
          },
          "substitutions": {
            "ANY_ADDITIONAL_PROPERTY": "text"
          },
          "cache_policy": {
            "include_step_code": true,
            "include_step_parameters": true,
            "include_artifact_values": true,
            "include_artifact_ids": true,
            "ignored_inputs": [
              "text"
            ]
          },
          "name": "text"
        },
        "start_time": "2025-09-18T23:01:06.017Z",
        "end_time": "2025-09-18T23:01:06.017Z",
        "client_environment": {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        },
        "orchestrator_environment": {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        },
        "orchestrator_run_id": "text",
        "code_path": "text",
        "template_id": "123e4567-e89b-12d3-a456-426614174000",
        "is_templatable": false
      },
      "resources": "[Circular Reference]",
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "permission_denied": false,
      "name": "text"
    },
    "model_version": {
      "body": {
        "created": "2025-09-18T23:01:06.017Z",
        "updated": "2025-09-18T23:01:06.017Z",
        "user_id": "123e4567-e89b-12d3-a456-426614174000",
        "project_id": "123e4567-e89b-12d3-a456-426614174000",
        "stage": "text",
        "number": 1,
        "model": {
          "body": {
            "created": "2025-09-18T23:01:06.017Z",
            "updated": "2025-09-18T23:01:06.017Z",
            "user_id": "123e4567-e89b-12d3-a456-426614174000",
            "project_id": "123e4567-e89b-12d3-a456-426614174000"
          },
          "metadata": {
            "license": "text",
            "description": "text",
            "audience": "text",
            "use_cases": "text",
            "limitations": "text",
            "trade_offs": "text",
            "ethics": "text",
            "save_models_to_registry": true
          },
          "resources": {
            "user": {
              "body": {
                "created": "2025-09-18T23:01:06.017Z",
                "updated": "2025-09-18T23:01:06.017Z",
                "active": false,
                "activation_token": "text",
                "full_name": "",
                "email_opted_in": true,
                "is_service_account": true,
                "is_admin": true,
                "default_project_id": "123e4567-e89b-12d3-a456-426614174000",
                "avatar_url": "text"
              },
              "metadata": {
                "email": "",
                "external_user_id": "123e4567-e89b-12d3-a456-426614174000",
                "user_metadata": {
                  "ANY_ADDITIONAL_PROPERTY": "anything"
                }
              },
              "resources": {
                "ANY_ADDITIONAL_PROPERTY": "anything"
              },
              "id": "123e4567-e89b-12d3-a456-426614174000",
              "permission_denied": false,
              "name": "text"
            },
            "tags": [
              {
                "body": {
                  "created": "2025-09-18T23:01:06.017Z",
                  "updated": "2025-09-18T23:01:06.017Z",
                  "user_id": "123e4567-e89b-12d3-a456-426614174000",
                  "color": "grey",
                  "exclusive": true
                },
                "metadata": {
                  "tagged_count": 1
                },
                "resources": {
                  "user": {
                    "body": {
                      "created": "2025-09-18T23:01:06.017Z",
                      "updated": "2025-09-18T23:01:06.017Z",
                      "active": false,
                      "activation_token": "text",
                      "full_name": "",
                      "email_opted_in": true,
                      "is_service_account": true,
                      "is_admin": true,
                      "default_project_id": "123e4567-e89b-12d3-a456-426614174000",
                      "avatar_url": "text"
                    },
                    "metadata": {
                      "email": "",
                      "external_user_id": "123e4567-e89b-12d3-a456-426614174000",
                      "user_metadata": {
                        "ANY_ADDITIONAL_PROPERTY": "anything"
                      }
                    },
                    "resources": {
                      "ANY_ADDITIONAL_PROPERTY": "anything"
                    },
                    "id": "123e4567-e89b-12d3-a456-426614174000",
                    "permission_denied": false,
                    "name": "text"
                  },
                  "ANY_ADDITIONAL_PROPERTY": "anything"
                },
                "id": "123e4567-e89b-12d3-a456-426614174000",
                "permission_denied": false,
                "name": "text"
              }
            ],
            "latest_version_name": "text",
            "latest_version_id": "123e4567-e89b-12d3-a456-426614174000",
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "id": "123e4567-e89b-12d3-a456-426614174000",
          "permission_denied": false,
          "name": "text"
        }
      },
      "metadata": {
        "description": "text",
        "run_metadata": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        }
      },
      "resources": "[Circular Reference]",
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "permission_denied": false,
      "name": "text"
    },
    "ANY_ADDITIONAL_PROPERTY": "anything"
  },
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "permission_denied": false,
  "name": "text"
}

Update Service

put

Updates a service.

Args: service_id: The ID of the service to update. update: The model containing the attributes to update.

Returns: The updated service object.

Authorizations
Path parameters
service_idstring · uuidRequired
Body

Update model for stack components.

nameany ofOptional
string · max: 255Optional
or
nullOptional
admin_stateany ofOptional

The administrative state of the service, e.g., ACTIVE, INACTIVE.

string · enumOptional

Possible states for the service and service endpoint.

Possible values:
or
nullOptional
service_sourceany ofOptional

The fully qualified class name of the service implementation.

stringOptional
or
nullOptional
statusany ofOptional
or
nullOptional
endpointany ofOptional
or
nullOptional
prediction_urlany ofOptional
stringOptional
or
nullOptional
health_check_urlany ofOptional
stringOptional
or
nullOptional
labelsany ofOptional
or
nullOptional
model_version_idany ofOptional
string · uuidOptional
or
nullOptional
Responses
200

Successful Response

application/json
put
PUT /api/v1/services/{service_id} HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 314

{
  "name": "text",
  "admin_state": "inactive",
  "service_source": "text",
  "status": {
    "ANY_ADDITIONAL_PROPERTY": "anything"
  },
  "endpoint": {
    "ANY_ADDITIONAL_PROPERTY": "anything"
  },
  "prediction_url": "text",
  "health_check_url": "text",
  "labels": {
    "ANY_ADDITIONAL_PROPERTY": "text"
  },
  "model_version_id": "123e4567-e89b-12d3-a456-426614174000"
}
{
  "body": {
    "created": "2025-09-18T23:01:06.017Z",
    "updated": "2025-09-18T23:01:06.017Z",
    "user_id": "123e4567-e89b-12d3-a456-426614174000",
    "project_id": "123e4567-e89b-12d3-a456-426614174000",
    "service_type": {
      "type": "text",
      "flavor": "text",
      "name": "",
      "description": "",
      "logo_url": ""
    },
    "labels": {
      "ANY_ADDITIONAL_PROPERTY": "text"
    },
    "state": "inactive"
  },
  "metadata": {
    "service_source": "text",
    "admin_state": "inactive",
    "config": {
      "ANY_ADDITIONAL_PROPERTY": "anything"
    },
    "status": {
      "ANY_ADDITIONAL_PROPERTY": "anything"
    },
    "endpoint": {
      "ANY_ADDITIONAL_PROPERTY": "anything"
    },
    "prediction_url": "text",
    "health_check_url": "text"
  },
  "resources": {
    "user": {
      "body": {
        "created": "2025-09-18T23:01:06.017Z",
        "updated": "2025-09-18T23:01:06.017Z",
        "active": false,
        "activation_token": "text",
        "full_name": "",
        "email_opted_in": true,
        "is_service_account": true,
        "is_admin": true,
        "default_project_id": "123e4567-e89b-12d3-a456-426614174000",
        "avatar_url": "text"
      },
      "metadata": {
        "email": "",
        "external_user_id": "123e4567-e89b-12d3-a456-426614174000",
        "user_metadata": {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        }
      },
      "resources": {
        "ANY_ADDITIONAL_PROPERTY": "anything"
      },
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "permission_denied": false,
      "name": "text"
    },
    "pipeline_run": {
      "body": "[Circular Reference]",
      "metadata": {
        "run_metadata": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        },
        "config": {
          "enable_cache": true,
          "enable_artifact_metadata": true,
          "enable_artifact_visualization": true,
          "enable_step_logs": true,
          "enable_pipeline_logs": true,
          "execution_mode": "continue_on_failure",
          "settings": {
            "ANY_ADDITIONAL_PROPERTY": {
              "ANY_ADDITIONAL_PROPERTY": "anything"
            }
          },
          "tags": [
            "text"
          ],
          "extra": {
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "failure_hook_source": {
            "module": "text",
            "attribute": "text",
            "type": "user",
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "success_hook_source": {
            "module": "text",
            "attribute": "text",
            "type": "user",
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "model": {
            "name": "text",
            "license": "text",
            "description": "text",
            "audience": "text",
            "use_cases": "text",
            "limitations": "text",
            "trade_offs": "text",
            "ethics": "text",
            "tags": [
              "text"
            ],
            "version": "none",
            "save_models_to_registry": true,
            "model_version_id": "123e4567-e89b-12d3-a456-426614174000",
            "suppress_class_validation_warnings": false
          },
          "parameters": {
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "retry": {
            "max_retries": 1,
            "delay": 0,
            "backoff": 0
          },
          "substitutions": {
            "ANY_ADDITIONAL_PROPERTY": "text"
          },
          "cache_policy": {
            "include_step_code": true,
            "include_step_parameters": true,
            "include_artifact_values": true,
            "include_artifact_ids": true,
            "ignored_inputs": [
              "text"
            ]
          },
          "name": "text"
        },
        "start_time": "2025-09-18T23:01:06.017Z",
        "end_time": "2025-09-18T23:01:06.017Z",
        "client_environment": {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        },
        "orchestrator_environment": {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        },
        "orchestrator_run_id": "text",
        "code_path": "text",
        "template_id": "123e4567-e89b-12d3-a456-426614174000",
        "is_templatable": false
      },
      "resources": "[Circular Reference]",
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "permission_denied": false,
      "name": "text"
    },
    "model_version": {
      "body": {
        "created": "2025-09-18T23:01:06.017Z",
        "updated": "2025-09-18T23:01:06.017Z",
        "user_id": "123e4567-e89b-12d3-a456-426614174000",
        "project_id": "123e4567-e89b-12d3-a456-426614174000",
        "stage": "text",
        "number": 1,
        "model": {
          "body": {
            "created": "2025-09-18T23:01:06.017Z",
            "updated": "2025-09-18T23:01:06.017Z",
            "user_id": "123e4567-e89b-12d3-a456-426614174000",
            "project_id": "123e4567-e89b-12d3-a456-426614174000"
          },
          "metadata": {
            "license": "text",
            "description": "text",
            "audience": "text",
            "use_cases": "text",
            "limitations": "text",
            "trade_offs": "text",
            "ethics": "text",
            "save_models_to_registry": true
          },
          "resources": {
            "user": {
              "body": {
                "created": "2025-09-18T23:01:06.017Z",
                "updated": "2025-09-18T23:01:06.017Z",
                "active": false,
                "activation_token": "text",
                "full_name": "",
                "email_opted_in": true,
                "is_service_account": true,
                "is_admin": true,
                "default_project_id": "123e4567-e89b-12d3-a456-426614174000",
                "avatar_url": "text"
              },
              "metadata": {
                "email": "",
                "external_user_id": "123e4567-e89b-12d3-a456-426614174000",
                "user_metadata": {
                  "ANY_ADDITIONAL_PROPERTY": "anything"
                }
              },
              "resources": {
                "ANY_ADDITIONAL_PROPERTY": "anything"
              },
              "id": "123e4567-e89b-12d3-a456-426614174000",
              "permission_denied": false,
              "name": "text"
            },
            "tags": [
              {
                "body": {
                  "created": "2025-09-18T23:01:06.017Z",
                  "updated": "2025-09-18T23:01:06.017Z",
                  "user_id": "123e4567-e89b-12d3-a456-426614174000",
                  "color": "grey",
                  "exclusive": true
                },
                "metadata": {
                  "tagged_count": 1
                },
                "resources": {
                  "user": {
                    "body": {
                      "created": "2025-09-18T23:01:06.017Z",
                      "updated": "2025-09-18T23:01:06.017Z",
                      "active": false,
                      "activation_token": "text",
                      "full_name": "",
                      "email_opted_in": true,
                      "is_service_account": true,
                      "is_admin": true,
                      "default_project_id": "123e4567-e89b-12d3-a456-426614174000",
                      "avatar_url": "text"
                    },
                    "metadata": {
                      "email": "",
                      "external_user_id": "123e4567-e89b-12d3-a456-426614174000",
                      "user_metadata": {
                        "ANY_ADDITIONAL_PROPERTY": "anything"
                      }
                    },
                    "resources": {
                      "ANY_ADDITIONAL_PROPERTY": "anything"
                    },
                    "id": "123e4567-e89b-12d3-a456-426614174000",
                    "permission_denied": false,
                    "name": "text"
                  },
                  "ANY_ADDITIONAL_PROPERTY": "anything"
                },
                "id": "123e4567-e89b-12d3-a456-426614174000",
                "permission_denied": false,
                "name": "text"
              }
            ],
            "latest_version_name": "text",
            "latest_version_id": "123e4567-e89b-12d3-a456-426614174000",
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "id": "123e4567-e89b-12d3-a456-426614174000",
          "permission_denied": false,
          "name": "text"
        }
      },
      "metadata": {
        "description": "text",
        "run_metadata": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        }
      },
      "resources": "[Circular Reference]",
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "permission_denied": false,
      "name": "text"
    },
    "ANY_ADDITIONAL_PROPERTY": "anything"
  },
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "permission_denied": false,
  "name": "text"
}

Delete Service

delete

Deletes a specific service.

Args: service_id: The ID of the service to delete.

Authorizations
Path parameters
service_idstring · uuidRequired
Responses
200

Successful Response

application/json
Responseany
delete
DELETE /api/v1/services/{service_id} HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*

No content

Last updated

Was this helpful?