Hi All,
Apologies in advance if this info is elsewhere on the forum, could not find through searching, but feel free to delete or close if elsewhere.
I am testing some shadow customer creation for a product in postman and looking for some guidance.
I am trying to create a new user with POST and the following url: https://api.particle.io/v1/products/:productlD/customers
I do not have auth turned on but my JSON looks like this:
{
"productIdOrSlug": ":productID",
"client_id": "12345666blahblahblah",
"email": "test@gmail.com",
"no_password": "true",
"response_type": "token"
}
The response I get is this:
{
"ok": false,
"error": "Product not found."
}
I’m pretty sure I have a formatting issue of I’m missing something from my JSON, but can’t figure out what it is.