Add customer to my organization

Hello community.

As a starter i want to be the one to create the customer, there will be no webpage or app involved. I am taking baby step forward. However i fail to understand the step i need to take.

I thought i might be able to add customer by the CLI but i cant find any create customer there.
Can i only do it by an app or a webpage?

I have tried curl but it fails see below.
and im not sure i need to add an “client” if im not gonna use a webpage or an app?

Is there a easier way to add customer and accossiate the user with my organisation?

Curl error ( somehow it refuse to talk the whole string, Im on windows 10)

C:\Program Files\cURL\bin>
C:\Program Files\cURL\bin>curl -X POST -H "Authorization: Bearer 1234" -d name=MyApp -d type=installed \
curl: (6) Could not resolve host: \

C:\Program Files\cURL\bin>-d redirect_uri=http://www.particle.io/setup -d organization=my-org \
'-d' is not recognized as an internal or external command,
operable program or batch file.

Please can anyone share some guidance or step to step how to make this. I cant seem to understand the documentation very well in this regard.

BR
Emilkl

@emilkl
This curl error

can be solve by just remove \ For instance,

curl -X POST -H "Authorization: Bearer 1234" -d name=MyApp -d type=installed -d organization=my-org https://api.particle.io/v1/clients

Further, you can see this tutorial here:
Continuing the discussion from Tutorial for a simple web app:

Hello and thank you. yes you are correct the / was wrong :slight_smile:

and the rest was copy paste issues :slight_smile:

Thank you

/Emilkl