Back to Collection Items
var
begin
http.AuthToken := '<access_token>';success := http.QuickGetSb('https://domain.com/services/data/v{{version}}/sobjects/Global/describe/layouts/',sbResponseBody.ControlInterface);
Curl Command
curl -X GET
-H "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
https://domain.com/services/data/v{{version}}/sobjects/Global/describe/layouts/
Postman Collection Item JSON
{
"name": "Describe Global Layouts",
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{_endpoint}}/services/data/v{{version}}/sobjects/Global/describe/layouts/",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"data",
"v{{version}}",
"sobjects",
"Global",
"describe",
"layouts",
""
]
},
"description": "Returns a list of layouts and descriptions. The list of fields and the layout name are returned."
},
"response": [
]
}