# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/Projects/GetProjectTemplates
?project_object_id=123
This method allows you to get all project templates for an object.
To get all project templates, you need to make a GET call to the following url:
:
http://localhost:8888/api/Projects/GetProjectTemplates
Result example :
[
{
"templateid": "long",
"templatename": "string",
}
]
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| project_object_id | query | long | Project Object Id. |
| Authorization | header | string | Add Authorization header token |