API for the BNDRY platform
BNDRY API (v1alpha)
Optional. The maximum number of activity log types to return. The service may return fewer than this value. If unspecified, at most 50 activity log types will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
Optional. A page token, received from a previous ListActivityLogType call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListActivityLogType must match the call that provided the page token.
Optional. If true, soft-deleted activity log types will be included in the response. See AIP-164.
Optional. The number of activity log types to skip before starting to collect the result set.
Optional. A filter expression that filters the results listed in the response. Filter only currently supports a fuzzy search on display name. See AIP-160 for more details.
- Mock serverhttps://docs.bndry.net/_mock/apis/openapi/v1alpha/activityLogTypes
- BNDRY APIhttps://api.bndry.app/v1alpha/activityLogTypes
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/activityLogTypes?pageSize=25&pageToken=ChAIAhABGAE&showDeleted=true&skip=50&filter=Customer+Sign+in&orderBy=name+desc' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "activityLogTypes": [ { … } ], "nextPageToken": "string", "totalSize": 0 }
- Mock serverhttps://docs.bndry.net/_mock/apis/openapi/v1alpha/activityLogTypes
- BNDRY APIhttps://api.bndry.app/v1alpha/activityLogTypes
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/activityLogTypes?activityLogTypeId=customer-sign-in' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"label": "string"
}'{ "name": "string", "label": "string" }
- Mock serverhttps://docs.bndry.net/_mock/apis/openapi/v1alpha/activityLogTypes/{activityLogType}
- BNDRY APIhttps://api.bndry.app/v1alpha/activityLogTypes/{activityLogType}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/activityLogTypes/{activityLogType}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "name": "string", "label": "string" }
- Mock serverhttps://docs.bndry.net/_mock/apis/openapi/v1alpha/activityLogTypes/{activityLogType}
- BNDRY APIhttps://api.bndry.app/v1alpha/activityLogTypes/{activityLogType}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/activityLogTypes/{activityLogType}?updateMask.paths=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"label": "string"
}'{ "name": "string", "label": "string" }