Chilkat Online Tools

SQL Server / Datadog API Collection / Get all powerpacks

Back to Collection Items

-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @iTmp0 int
    -- Important: Do not use nvarchar(max).  See the warning about using nvarchar(max).
    DECLARE @sTmp0 nvarchar(4000)
    -- This example assumes the Chilkat API to have been previously unlocked.
    -- See Global Unlock Sample for sample code.

    DECLARE @http int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Http', @http OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @success int

    DECLARE @queryParams int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.JsonObject', @queryParams OUT

    EXEC sp_OAMethod @queryParams, 'UpdateInt', @success OUT, 'page[limit]', 25
    EXEC sp_OAMethod @queryParams, 'UpdateInt', @success OUT, 'page[offset]', 0

    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Accept', 'application/json'

    DECLARE @resp int
    EXEC sp_OAMethod @http, 'QuickRequestParams', @resp OUT, 'GET', 'https://api.app.ddog-gov.com/api/v2/powerpacks', @queryParams
    EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
    IF @iTmp0 = 0
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @queryParams
        RETURN
      END

    DECLARE @sbResponseBody int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.StringBuilder', @sbResponseBody OUT

    EXEC sp_OAMethod @resp, 'GetBodySb', @success OUT, @sbResponseBody

    DECLARE @jResp int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.JsonObject', @jResp OUT

    EXEC sp_OAMethod @jResp, 'LoadSb', @success OUT, @sbResponseBody
    EXEC sp_OASetProperty @jResp, 'EmitCompact', 0


    PRINT 'Response Body:'
    EXEC sp_OAMethod @jResp, 'Emit', @sTmp0 OUT
    PRINT @sTmp0

    DECLARE @respStatusCode int
    EXEC sp_OAGetProperty @resp, 'StatusCode', @respStatusCode OUT

    PRINT 'Response Status Code = ' + @respStatusCode
    IF @respStatusCode >= 400
      BEGIN

        PRINT 'Response Header:'
        EXEC sp_OAGetProperty @resp, 'Header', @sTmp0 OUT
        PRINT @sTmp0

        PRINT 'Failed.'
        EXEC @hr = sp_OADestroy @resp

        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @queryParams
        EXEC @hr = sp_OADestroy @sbResponseBody
        EXEC @hr = sp_OADestroy @jResp
        RETURN
      END
    EXEC @hr = sp_OADestroy @resp

    -- Sample JSON response:
    -- (Sample code for parsing the JSON response is shown below)

    -- {
    --   "data": [
    --     {
    --       "attributes": {
    --         "group_widget": {
    --           "definition": {
    --             "widgets": [
    --               {
    --                 "definition": {
    --                   "id4": {}
    --                 },
    --                 "layout": {
    --                   "x": "<long>",
    --                   "y": "<long>",
    --                   "width": "<long>",
    --                   "height": "<long>"
    --                 }
    --               },
    --               {
    --                 "definition": {
    --                   "nullac41": {},
    --                   "adipisicing9": {}
    --                 },
    --                 "layout": {
    --                   "x": "<long>",
    --                   "y": "<long>",
    --                   "width": "<long>",
    --                   "height": "<long>"
    --                 }
    --               }
    --             ],
    --             "layout_type": "<string>",
    --             "type": "<string>",
    --             "show_title": "<boolean>",
    --             "title": "<string>"
    --           },
    --           "layout": {
    --             "x": "<long>",
    --             "y": "<long>",
    --             "width": "<long>",
    --             "height": "<long>"
    --           }
    --         },
    --         "name": "<string>",
    --         "description": "<string>",
    --         "tags": [
    --           "<string>",
    --           "<string>"
    --         ],
    --         "template_variables": [
    --           {
    --             "name": "<string>",
    --             "defaults": [
    --               "<string>",
    --               "<string>"
    --             ]
    --           },
    --           {
    --             "name": "<string>",
    --             "defaults": [
    --               "<string>",
    --               "<string>"
    --             ]
    --           }
    --         ]
    --       },
    --       "id": "<string>",
    --       "relationships": {
    --         "author": {
    --           "email": "<string>",
    --           "handle": "<string>",
    --           "name": "<string>"
    --         }
    --       },
    --       "type": "<string>"
    --     },
    --     {
    --       "attributes": {
    --         "group_widget": {
    --           "definition": {
    --             "widgets": [
    --               {
    --                 "definition": {
    --                   "ut9": {}
    --                 },
    --                 "layout": {
    --                   "x": "<long>",
    --                   "y": "<long>",
    --                   "width": "<long>",
    --                   "height": "<long>"
    --                 }
    --               },
    --               {
    --                 "definition": {
    --                   "labore_391": {},
    --                   "ullamco142": {}
    --                 },
    --                 "layout": {
    --                   "x": "<long>",
    --                   "y": "<long>",
    --                   "width": "<long>",
    --                   "height": "<long>"
    --                 }
    --               }
    --             ],
    --             "layout_type": "<string>",
    --             "type": "<string>",
    --             "show_title": "<boolean>",
    --             "title": "<string>"
    --           },
    --           "layout": {
    --             "x": "<long>",
    --             "y": "<long>",
    --             "width": "<long>",
    --             "height": "<long>"
    --           }
    --         },
    --         "name": "<string>",
    --         "description": "<string>",
    --         "tags": [
    --           "<string>",
    --           "<string>"
    --         ],
    --         "template_variables": [
    --           {
    --             "name": "<string>",
    --             "defaults": [
    --               "<string>",
    --               "<string>"
    --             ]
    --           },
    --           {
    --             "name": "<string>",
    --             "defaults": [
    --               "<string>",
    --               "<string>"
    --             ]
    --           }
    --         ]
    --       },
    --       "id": "<string>",
    --       "relationships": {
    --         "author": {
    --           "email": "<string>",
    --           "handle": "<string>",
    --           "name": "<string>"
    --         }
    --       },
    --       "type": "<string>"
    --     }
    --   ],
    --   "included": [
    --     {
    --       "attributes": {
    --         "created_at": "<dateTime>",
    --         "disabled": "<boolean>",
    --         "email": "<string>",
    --         "handle": "<string>",
    --         "icon": "<string>",
    --         "modified_at": "<dateTime>",
    --         "name": "<string>",
    --         "service_account": "<boolean>",
    --         "status": "<string>",
    --         "title": "<string>",
    --         "verified": "<boolean>"
    --       },
    --       "id": "<string>",
    --       "relationships": {
    --         "org": {
    --           "data": {
    --             "id": "<string>",
    --             "type": "orgs"
    --           }
    --         },
    --         "other_orgs": {
    --           "data": [
    --             {
    --               "id": "<string>",
    --               "type": "orgs"
    --             },
    --             {
    --               "id": "<string>",
    --               "type": "orgs"
    --             }
    --           ]
    --         },
    --         "other_users": {
    --           "data": [
    --             {
    --               "id": "<string>",
    --               "type": "users"
    --             },
    --             {
    --               "id": "<string>",
    --               "type": "users"
    --             }
    --           ]
    --         },
    --         "roles": {
    --           "data": [
    --             {
    --               "id": "<string>",
    --               "type": "roles"
    --             },
    --             {
    --               "id": "<string>",
    --               "type": "roles"
    --             }
    --           ]
    --         }
    --       },
    --       "type": "users"
    --     },
    --     {
    --       "attributes": {
    --         "created_at": "<dateTime>",
    --         "disabled": "<boolean>",
    --         "email": "<string>",
    --         "handle": "<string>",
    --         "icon": "<string>",
    --         "modified_at": "<dateTime>",
    --         "name": "<string>",
    --         "service_account": "<boolean>",
    --         "status": "<string>",
    --         "title": "<string>",
    --         "verified": "<boolean>"
    --       },
    --       "id": "<string>",
    --       "relationships": {
    --         "org": {
    --           "data": {
    --             "id": "<string>",
    --             "type": "orgs"
    --           }
    --         },
    --         "other_orgs": {
    --           "data": [
    --             {
    --               "id": "<string>",
    --               "type": "orgs"
    --             },
    --             {
    --               "id": "<string>",
    --               "type": "orgs"
    --             }
    --           ]
    --         },
    --         "other_users": {
    --           "data": [
    --             {
    --               "id": "<string>",
    --               "type": "users"
    --             },
    --             {
    --               "id": "<string>",
    --               "type": "users"
    --             }
    --           ]
    --         },
    --         "roles": {
    --           "data": [
    --             {
    --               "id": "<string>",
    --               "type": "roles"
    --             },
    --             {
    --               "id": "<string>",
    --               "type": "roles"
    --             }
    --           ]
    --         }
    --       },
    --       "type": "users"
    --     }
    --   ],
    --   "links": {
    --     "first": "<string>",
    --     "last": "<string>",
    --     "next": "<string>",
    --     "prev": "<string>",
    --     "self": "<string>"
    --   },
    --   "meta": {
    --     "pagination": {
    --       "first_offset": "<long>",
    --       "last_offset": "<long>",
    --       "limit": "<long>",
    --       "next_offset": "<long>",
    --       "offset": "<long>",
    --       "prev_offset": "<long>",
    --       "total": "<long>",
    --       "type": "<string>"
    --     }
    --   }
    -- }

    -- Sample code for parsing the JSON response...
    -- Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

    DECLARE @Layout_type nvarchar(4000)

    DECLARE @DefinitionType nvarchar(4000)

    DECLARE @Show_title nvarchar(4000)

    DECLARE @Title nvarchar(4000)

    DECLARE @X nvarchar(4000)

    DECLARE @Y nvarchar(4000)

    DECLARE @Width nvarchar(4000)

    DECLARE @Height nvarchar(4000)

    DECLARE @Name nvarchar(4000)

    DECLARE @Description nvarchar(4000)

    DECLARE @id nvarchar(4000)

    DECLARE @v_Email nvarchar(4000)

    DECLARE @Handle nvarchar(4000)

    DECLARE @AuthorName nvarchar(4000)

    DECLARE @v_type nvarchar(4000)

    DECLARE @j int

    DECLARE @count_j int

    DECLARE @layoutX nvarchar(4000)

    DECLARE @layoutY nvarchar(4000)

    DECLARE @layoutWidth nvarchar(4000)

    DECLARE @layoutHeight nvarchar(4000)

    DECLARE @strVal nvarchar(4000)

    DECLARE @name nvarchar(4000)

    DECLARE @k int

    DECLARE @count_k int

    DECLARE @Created_at nvarchar(4000)

    DECLARE @Disabled nvarchar(4000)

    DECLARE @attributesEmail nvarchar(4000)

    DECLARE @attributesHandle nvarchar(4000)

    DECLARE @Icon nvarchar(4000)

    DECLARE @Modified_at nvarchar(4000)

    DECLARE @attributesName nvarchar(4000)

    DECLARE @Service_account nvarchar(4000)

    DECLARE @Status nvarchar(4000)

    DECLARE @attributesTitle nvarchar(4000)

    DECLARE @Verified nvarchar(4000)

    DECLARE @Id nvarchar(4000)

    DECLARE @DataType nvarchar(4000)

    DECLARE @First nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @First OUT, 'links.first'
    DECLARE @Last nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @Last OUT, 'links.last'
    DECLARE @v_Next nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @v_Next OUT, 'links.next'
    DECLARE @Prev nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @Prev OUT, 'links.prev'
    DECLARE @v_Self nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @v_Self OUT, 'links.self'
    DECLARE @First_offset nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @First_offset OUT, 'meta.pagination.first_offset'
    DECLARE @Last_offset nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @Last_offset OUT, 'meta.pagination.last_offset'
    DECLARE @Limit nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @Limit OUT, 'meta.pagination.limit'
    DECLARE @Next_offset nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @Next_offset OUT, 'meta.pagination.next_offset'
    DECLARE @Offset nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @Offset OUT, 'meta.pagination.offset'
    DECLARE @Prev_offset nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @Prev_offset OUT, 'meta.pagination.prev_offset'
    DECLARE @Total nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @Total OUT, 'meta.pagination.total'
    DECLARE @v_Type nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @v_Type OUT, 'meta.pagination.type'
    DECLARE @i int
    SELECT @i = 0
    DECLARE @count_i int
    EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'data'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @jResp, 'I', @i
        EXEC sp_OAMethod @jResp, 'StringOf', @Layout_type OUT, 'data[i].attributes.group_widget.definition.layout_type'
        EXEC sp_OAMethod @jResp, 'StringOf', @DefinitionType OUT, 'data[i].attributes.group_widget.definition.type'
        EXEC sp_OAMethod @jResp, 'StringOf', @Show_title OUT, 'data[i].attributes.group_widget.definition.show_title'
        EXEC sp_OAMethod @jResp, 'StringOf', @Title OUT, 'data[i].attributes.group_widget.definition.title'
        EXEC sp_OAMethod @jResp, 'StringOf', @X OUT, 'data[i].attributes.group_widget.layout.x'
        EXEC sp_OAMethod @jResp, 'StringOf', @Y OUT, 'data[i].attributes.group_widget.layout.y'
        EXEC sp_OAMethod @jResp, 'StringOf', @Width OUT, 'data[i].attributes.group_widget.layout.width'
        EXEC sp_OAMethod @jResp, 'StringOf', @Height OUT, 'data[i].attributes.group_widget.layout.height'
        EXEC sp_OAMethod @jResp, 'StringOf', @Name OUT, 'data[i].attributes.name'
        EXEC sp_OAMethod @jResp, 'StringOf', @Description OUT, 'data[i].attributes.description'
        EXEC sp_OAMethod @jResp, 'StringOf', @id OUT, 'data[i].id'
        EXEC sp_OAMethod @jResp, 'StringOf', @v_Email OUT, 'data[i].relationships.author.email'
        EXEC sp_OAMethod @jResp, 'StringOf', @Handle OUT, 'data[i].relationships.author.handle'
        EXEC sp_OAMethod @jResp, 'StringOf', @AuthorName OUT, 'data[i].relationships.author.name'
        EXEC sp_OAMethod @jResp, 'StringOf', @v_type OUT, 'data[i].type'
        SELECT @j = 0
        EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_j OUT, 'data[i].attributes.group_widget.definition.widgets'
        WHILE @j < @count_j
          BEGIN
            EXEC sp_OASetProperty @jResp, 'J', @j
            EXEC sp_OAMethod @jResp, 'StringOf', @layoutX OUT, 'data[i].attributes.group_widget.definition.widgets[j].layout.x'
            EXEC sp_OAMethod @jResp, 'StringOf', @layoutY OUT, 'data[i].attributes.group_widget.definition.widgets[j].layout.y'
            EXEC sp_OAMethod @jResp, 'StringOf', @layoutWidth OUT, 'data[i].attributes.group_widget.definition.widgets[j].layout.width'
            EXEC sp_OAMethod @jResp, 'StringOf', @layoutHeight OUT, 'data[i].attributes.group_widget.definition.widgets[j].layout.height'
            SELECT @j = @j + 1
          END
        SELECT @j = 0
        EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_j OUT, 'data[i].attributes.tags'
        WHILE @j < @count_j
          BEGIN
            EXEC sp_OASetProperty @jResp, 'J', @j
            EXEC sp_OAMethod @jResp, 'StringOf', @strVal OUT, 'data[i].attributes.tags[j]'
            SELECT @j = @j + 1
          END
        SELECT @j = 0
        EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_j OUT, 'data[i].attributes.template_variables'
        WHILE @j < @count_j
          BEGIN
            EXEC sp_OASetProperty @jResp, 'J', @j
            EXEC sp_OAMethod @jResp, 'StringOf', @name OUT, 'data[i].attributes.template_variables[j].name'
            SELECT @k = 0
            EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_k OUT, 'data[i].attributes.template_variables[j].defaults'
            WHILE @k < @count_k
              BEGIN
                EXEC sp_OASetProperty @jResp, 'K', @k
                EXEC sp_OAMethod @jResp, 'StringOf', @strVal OUT, 'data[i].attributes.template_variables[j].defaults[k]'
                SELECT @k = @k + 1
              END
            SELECT @j = @j + 1
          END
        SELECT @i = @i + 1
      END
    SELECT @i = 0
    EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'included'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @jResp, 'I', @i
        EXEC sp_OAMethod @jResp, 'StringOf', @Created_at OUT, 'included[i].attributes.created_at'
        EXEC sp_OAMethod @jResp, 'StringOf', @Disabled OUT, 'included[i].attributes.disabled'
        EXEC sp_OAMethod @jResp, 'StringOf', @attributesEmail OUT, 'included[i].attributes.email'
        EXEC sp_OAMethod @jResp, 'StringOf', @attributesHandle OUT, 'included[i].attributes.handle'
        EXEC sp_OAMethod @jResp, 'StringOf', @Icon OUT, 'included[i].attributes.icon'
        EXEC sp_OAMethod @jResp, 'StringOf', @Modified_at OUT, 'included[i].attributes.modified_at'
        EXEC sp_OAMethod @jResp, 'StringOf', @attributesName OUT, 'included[i].attributes.name'
        EXEC sp_OAMethod @jResp, 'StringOf', @Service_account OUT, 'included[i].attributes.service_account'
        EXEC sp_OAMethod @jResp, 'StringOf', @Status OUT, 'included[i].attributes.status'
        EXEC sp_OAMethod @jResp, 'StringOf', @attributesTitle OUT, 'included[i].attributes.title'
        EXEC sp_OAMethod @jResp, 'StringOf', @Verified OUT, 'included[i].attributes.verified'
        EXEC sp_OAMethod @jResp, 'StringOf', @id OUT, 'included[i].id'
        EXEC sp_OAMethod @jResp, 'StringOf', @Id OUT, 'included[i].relationships.org.data.id'
        EXEC sp_OAMethod @jResp, 'StringOf', @DataType OUT, 'included[i].relationships.org.data.type'
        EXEC sp_OAMethod @jResp, 'StringOf', @v_type OUT, 'included[i].type'
        SELECT @j = 0
        EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_j OUT, 'included[i].relationships.other_orgs.data'
        WHILE @j < @count_j
          BEGIN
            EXEC sp_OASetProperty @jResp, 'J', @j
            EXEC sp_OAMethod @jResp, 'StringOf', @id OUT, 'included[i].relationships.other_orgs.data[j].id'
            EXEC sp_OAMethod @jResp, 'StringOf', @v_type OUT, 'included[i].relationships.other_orgs.data[j].type'
            SELECT @j = @j + 1
          END
        SELECT @j = 0
        EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_j OUT, 'included[i].relationships.other_users.data'
        WHILE @j < @count_j
          BEGIN
            EXEC sp_OASetProperty @jResp, 'J', @j
            EXEC sp_OAMethod @jResp, 'StringOf', @id OUT, 'included[i].relationships.other_users.data[j].id'
            EXEC sp_OAMethod @jResp, 'StringOf', @v_type OUT, 'included[i].relationships.other_users.data[j].type'
            SELECT @j = @j + 1
          END
        SELECT @j = 0
        EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_j OUT, 'included[i].relationships.roles.data'
        WHILE @j < @count_j
          BEGIN
            EXEC sp_OASetProperty @jResp, 'J', @j
            EXEC sp_OAMethod @jResp, 'StringOf', @id OUT, 'included[i].relationships.roles.data[j].id'
            EXEC sp_OAMethod @jResp, 'StringOf', @v_type OUT, 'included[i].relationships.roles.data[j].type'
            SELECT @j = @j + 1
          END
        SELECT @i = @i + 1
      END

    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @queryParams
    EXEC @hr = sp_OADestroy @sbResponseBody
    EXEC @hr = sp_OADestroy @jResp


END
GO

Curl Command

curl -G -d "page[limit]=25"
	-d "page[offset]=0"
	-H "Accept: application/json"
https://api.app.ddog-gov.com/api/v2/powerpacks

Postman Collection Item JSON

{
  "name": "Get all powerpacks",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/api/v2/powerpacks?page[limit]=25&page[offset]=0",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v2",
        "powerpacks"
      ],
      "query": [
        {
          "key": "page[limit]",
          "value": "25",
          "description": "Maximum number of powerpacks in the response."
        },
        {
          "key": "page[offset]",
          "value": "0",
          "description": "Specific offset to use as the beginning of the returned page."
        }
      ]
    },
    "description": "Get a list of all powerpacks."
  },
  "response": [
    {
      "name": "OK",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "description": "Added as a part of security scheme: apikey",
            "key": "DD-API-KEY",
            "value": "<API Key>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/v2/powerpacks?page[limit]=25&page[offset]=0",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "powerpacks"
          ],
          "query": [
            {
              "key": "page[limit]",
              "value": "25",
              "description": "Maximum number of powerpacks in the response."
            },
            {
              "key": "page[offset]",
              "value": "0",
              "description": "Specific offset to use as the beginning of the returned page."
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"data\": [\n    {\n      \"attributes\": {\n        \"group_widget\": {\n          \"definition\": {\n            \"widgets\": [\n              {\n                \"definition\": {\n                  \"id4\": {}\n                },\n                \"layout\": {\n                  \"x\": \"<long>\",\n                  \"y\": \"<long>\",\n                  \"width\": \"<long>\",\n                  \"height\": \"<long>\"\n                }\n              },\n              {\n                \"definition\": {\n                  \"nullac41\": {},\n                  \"adipisicing9\": {}\n                },\n                \"layout\": {\n                  \"x\": \"<long>\",\n                  \"y\": \"<long>\",\n                  \"width\": \"<long>\",\n                  \"height\": \"<long>\"\n                }\n              }\n            ],\n            \"layout_type\": \"<string>\",\n            \"type\": \"<string>\",\n            \"show_title\": \"<boolean>\",\n            \"title\": \"<string>\"\n          },\n          \"layout\": {\n            \"x\": \"<long>\",\n            \"y\": \"<long>\",\n            \"width\": \"<long>\",\n            \"height\": \"<long>\"\n          }\n        },\n        \"name\": \"<string>\",\n        \"description\": \"<string>\",\n        \"tags\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"template_variables\": [\n          {\n            \"name\": \"<string>\",\n            \"defaults\": [\n              \"<string>\",\n              \"<string>\"\n            ]\n          },\n          {\n            \"name\": \"<string>\",\n            \"defaults\": [\n              \"<string>\",\n              \"<string>\"\n            ]\n          }\n        ]\n      },\n      \"id\": \"<string>\",\n      \"relationships\": {\n        \"author\": {\n          \"email\": \"<string>\",\n          \"handle\": \"<string>\",\n          \"name\": \"<string>\"\n        }\n      },\n      \"type\": \"<string>\"\n    },\n    {\n      \"attributes\": {\n        \"group_widget\": {\n          \"definition\": {\n            \"widgets\": [\n              {\n                \"definition\": {\n                  \"ut9\": {}\n                },\n                \"layout\": {\n                  \"x\": \"<long>\",\n                  \"y\": \"<long>\",\n                  \"width\": \"<long>\",\n                  \"height\": \"<long>\"\n                }\n              },\n              {\n                \"definition\": {\n                  \"labore_391\": {},\n                  \"ullamco142\": {}\n                },\n                \"layout\": {\n                  \"x\": \"<long>\",\n                  \"y\": \"<long>\",\n                  \"width\": \"<long>\",\n                  \"height\": \"<long>\"\n                }\n              }\n            ],\n            \"layout_type\": \"<string>\",\n            \"type\": \"<string>\",\n            \"show_title\": \"<boolean>\",\n            \"title\": \"<string>\"\n          },\n          \"layout\": {\n            \"x\": \"<long>\",\n            \"y\": \"<long>\",\n            \"width\": \"<long>\",\n            \"height\": \"<long>\"\n          }\n        },\n        \"name\": \"<string>\",\n        \"description\": \"<string>\",\n        \"tags\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"template_variables\": [\n          {\n            \"name\": \"<string>\",\n            \"defaults\": [\n              \"<string>\",\n              \"<string>\"\n            ]\n          },\n          {\n            \"name\": \"<string>\",\n            \"defaults\": [\n              \"<string>\",\n              \"<string>\"\n            ]\n          }\n        ]\n      },\n      \"id\": \"<string>\",\n      \"relationships\": {\n        \"author\": {\n          \"email\": \"<string>\",\n          \"handle\": \"<string>\",\n          \"name\": \"<string>\"\n        }\n      },\n      \"type\": \"<string>\"\n    }\n  ],\n  \"included\": [\n    {\n      \"attributes\": {\n        \"created_at\": \"<dateTime>\",\n        \"disabled\": \"<boolean>\",\n        \"email\": \"<string>\",\n        \"handle\": \"<string>\",\n        \"icon\": \"<string>\",\n        \"modified_at\": \"<dateTime>\",\n        \"name\": \"<string>\",\n        \"service_account\": \"<boolean>\",\n        \"status\": \"<string>\",\n        \"title\": \"<string>\",\n        \"verified\": \"<boolean>\"\n      },\n      \"id\": \"<string>\",\n      \"relationships\": {\n        \"org\": {\n          \"data\": {\n            \"id\": \"<string>\",\n            \"type\": \"orgs\"\n          }\n        },\n        \"other_orgs\": {\n          \"data\": [\n            {\n              \"id\": \"<string>\",\n              \"type\": \"orgs\"\n            },\n            {\n              \"id\": \"<string>\",\n              \"type\": \"orgs\"\n            }\n          ]\n        },\n        \"other_users\": {\n          \"data\": [\n            {\n              \"id\": \"<string>\",\n              \"type\": \"users\"\n            },\n            {\n              \"id\": \"<string>\",\n              \"type\": \"users\"\n            }\n          ]\n        },\n        \"roles\": {\n          \"data\": [\n            {\n              \"id\": \"<string>\",\n              \"type\": \"roles\"\n            },\n            {\n              \"id\": \"<string>\",\n              \"type\": \"roles\"\n            }\n          ]\n        }\n      },\n      \"type\": \"users\"\n    },\n    {\n      \"attributes\": {\n        \"created_at\": \"<dateTime>\",\n        \"disabled\": \"<boolean>\",\n        \"email\": \"<string>\",\n        \"handle\": \"<string>\",\n        \"icon\": \"<string>\",\n        \"modified_at\": \"<dateTime>\",\n        \"name\": \"<string>\",\n        \"service_account\": \"<boolean>\",\n        \"status\": \"<string>\",\n        \"title\": \"<string>\",\n        \"verified\": \"<boolean>\"\n      },\n      \"id\": \"<string>\",\n      \"relationships\": {\n        \"org\": {\n          \"data\": {\n            \"id\": \"<string>\",\n            \"type\": \"orgs\"\n          }\n        },\n        \"other_orgs\": {\n          \"data\": [\n            {\n              \"id\": \"<string>\",\n              \"type\": \"orgs\"\n            },\n            {\n              \"id\": \"<string>\",\n              \"type\": \"orgs\"\n            }\n          ]\n        },\n        \"other_users\": {\n          \"data\": [\n            {\n              \"id\": \"<string>\",\n              \"type\": \"users\"\n            },\n            {\n              \"id\": \"<string>\",\n              \"type\": \"users\"\n            }\n          ]\n        },\n        \"roles\": {\n          \"data\": [\n            {\n              \"id\": \"<string>\",\n              \"type\": \"roles\"\n            },\n            {\n              \"id\": \"<string>\",\n              \"type\": \"roles\"\n            }\n          ]\n        }\n      },\n      \"type\": \"users\"\n    }\n  ],\n  \"links\": {\n    \"first\": \"<string>\",\n    \"last\": \"<string>\",\n    \"next\": \"<string>\",\n    \"prev\": \"<string>\",\n    \"self\": \"<string>\"\n  },\n  \"meta\": {\n    \"pagination\": {\n      \"first_offset\": \"<long>\",\n      \"last_offset\": \"<long>\",\n      \"limit\": \"<long>\",\n      \"next_offset\": \"<long>\",\n      \"offset\": \"<long>\",\n      \"prev_offset\": \"<long>\",\n      \"total\": \"<long>\",\n      \"type\": \"<string>\"\n    }\n  }\n}"
    },
    {
      "name": "Too many requests",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "description": "Added as a part of security scheme: apikey",
            "key": "DD-API-KEY",
            "value": "<API Key>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/v2/powerpacks?page[limit]=25&page[offset]=0",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "powerpacks"
          ],
          "query": [
            {
              "key": "page[limit]",
              "value": "25",
              "description": "Maximum number of powerpacks in the response."
            },
            {
              "key": "page[offset]",
              "value": "0",
              "description": "Specific offset to use as the beginning of the returned page."
            }
          ]
        }
      },
      "status": "Too Many Requests",
      "code": 429,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"errors\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}"
    }
  ]
}