Report this

What is the reason for this report?

Request header for the create droplette API -- How to assign it to a Project in your account

Posted on March 2, 2023

I’m attempting to create an instance with an API but getting it assigned to a specific project i cannot do. The closest I came is here: https://docs.digitalocean.com/reference/api/api-reference/#operation/databases_create_cluster:~:text=the database cluster.-,project_id,-string <uuid Basically it looks like I need a reference to the project in the Request body headers but when I look for that I’m having no such luck… I tried project:, project_id: but no luck

The only way i can see is to make the target project the default…which makes any new instance created via API be assigned to it…but then any instance i create would only be assigned to that. Kind of at a loss here

def create_do_droplette():
    droplet = digitalocean.Droplet(token=API_DIGITALO_TOKEN,
                                name='Test1',
                                region='nyc1', # New York 1
                                image='ubuntu-20-04-x64', # Ubuntu 20.04 x64
                                size_slug='s-1vcpu-1gb',  # 1GB RAM, 1 vCPU
                                tags='TestTag',
                                backups=True,
                                project_id="Test") # don't know about this here <<<<<<<<<<<<<<<
    return droplet.create()


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
0

Hi there,

I believe that you could create your Droplet first and then make a second API call to attach the newly created Droplet to the project.

For example:

curl -X POST \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $DIGITALOCEAN_TOKEN" \
  -d '{"resources": ["do:droplet:1", "do:floatingip:192.168.99.100"]}' \
  "https://api.digitalocean.com/v2/projects/4e1bfbc3-dc3e-41f2-a18f-1b4d7ba71679/resources"

For more information here is a reference to the API documentation:

https://docs.digitalocean.com/reference/api/api-reference/#operation/projects_assign_resources

The API documentation URL that you’ve shared is for database clusters rather than Droplets.

Hope that this helps!

Best,

Bobby

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.