Get templates

This endpoint is deprecated.
POST/api/RPC.common.Api.Blanks.get?token=<TOKEN>

Key Blanks.get · API version 2.0.0

Parameters

5 body parameters inside data[]
FieldTypeDescription
typeStringOperation type
nameStringTemplate name
get_allBooleanGet all
offsetNumberOffset
limitNumberLimit

Request example

Search By Type:
{
   "data" : [
      {
         "type" : "offer"
      }
   ]
}
Search By Name:
{
   "data" : [
      {
         "name" : "test Veto"
      }
   ]
}
Search By All Params:
{
   "data" : [
      {
         "name" : "test Veto",
         "type" : "offer"
      }
   ]
}
Get All:
{
	"data":[
		{}
	],
	"get_all":1,
	"limit":10000,
	"offset":0
}

cURL

Search By Type:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{   "data" : [      {         "type" : "offer"      }   ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.Blanks.get?token=<TOKEN>"
Search By Name:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{   "data" : [      {         "name" : "test Veto"      }   ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.Blanks.get?token=<TOKEN>"
Search By All Params:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{   "data" : [      {         "name" : "test Veto",         "type" : "offer"      }   ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.Blanks.get?token=<TOKEN>"
Curl example Get All:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{	"data":[		{}	],	"get_all":1,	"limit":10000,	"offset":0}	' "https://<DOMAIN_NAME>/api/RPC.common.Api.Blanks.get?token=<TOKEN>"

Response example