## Detach Service from VPC

**post** `/projects/{project_id}/services/{service_id}/detachFromVPC`

Disassociates a service from its VPC.

### Path Parameters

- `project_id: string`

- `service_id: string`

### Body Parameters

- `vpc_id: string`

  The ID of the VPC to attach the service to.

### Returns

- `message: optional string`

### Example

```http
curl http://localhost:8080/projects/$PROJECT_ID/services/$SERVICE_ID/detachFromVPC \
    -H 'Content-Type: application/json' \
    -H "Authorization: Bearer $TIGER_CLOUD_API_KEY" \
    -d '{
          "vpc_id": "1234567890"
        }'
```

#### Response

```json
{
  "message": "Action completed successfully."
}
```
