pydo.projects.assign_resources()

Generated on 18 Jun 2025 from pydo version v0.11.0

Description

To assign resources to a project, send a POST request to /v2/projects/$PROJECT_ID/resources.

Parameters

Name Type Required Description Default Value
project_id string True A unique identifier for a project.
body JSON or IO[bytes] True

Request Sample

import os
from pydo import Client

client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))

req = {
  "resources": [
    "do:droplet:13457723",
    "do:domain:example.com"
  ]
}

resp = client.projects.assign_resources(project_id="8dafda", body=req)

More Information

See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.

We can't find any results for your search.

Try using different keywords or simplifying your search terms.