## Attach Service to VPC

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

Associates a service with a 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/attachToVPC \
    -H 'Content-Type: application/json' \
    -H "Authorization: Bearer $TIGER_CLOUD_API_KEY" \
    -d '{
          "vpc_id": "1234567890"
        }'
```

#### Response

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