Create Project
POST
https://picnie.com/api/v1/create-projectCreate a project on Picnie to manage your assets, accessible from your Picnie dashboard.
Headers
| Name | Type | Description |
|---|---|---|
Authorization* | string | Pass api key in the authorization field Example: |
Body Parameters
| Name | Type | Description |
|---|---|---|
name* | string | Name of your project. Example: |
Notes
⚠️ Authentication required
curl --location 'https://picnie.com/api/v1/create-project' \
--header 'Authorization: YOUR_API_KEY' \
--data '{
"name":"Project with API"
}'Responses
200200 OK
{
"error": false,
"message": "Success",
"data": [
{
"id": "32",
"user_id": "2",
"name": "Project with API",
"type": "Image",
"is_active": "1",
"datetime_created": "2023-03-18 14:47:36"
}
]
}