• About
    • For Developers
  • API Reference
    • Changelog
  • Guides
    • Account creation
    • Agents async API
    • Links
API Referencesnap-ins

Beta
POST
https://api.devrev.ai/snap-ins.resources
POST
/snap-ins.resources
1curl -X POST https://api.devrev.ai/snap-ins.resources \
2 -H "Authorization: Bearer <token>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "id": "string",
6 "user": "string"
7}'
Try it
1{
2 "snap_in_version": {
3 "id": "string",
4 "display_id": "string"
5 },
6 "event_sources": {},
7 "inputs": {},
8 "keyrings": {}
9}
Gets snap-in resources for a user in a snap-in.

Headers

AuthorizationstringRequired
Bearer authentication of the form `Bearer <token>`, where token is your auth token.

Request

This endpoint expects an object.
idstringRequiredformat: "id"
The ID of the snap-in to get resources for.
userstringRequiredformat: "id"
The ID of the user to get resources for.

Response

Success.
snap_in_versionobject
event_sourcesmap from strings to strings or null
The event sources for the snap-in.
inputsobject or null
The inputs for the snap-in.
keyringsmap from strings to objects or null
Map of keyring names and its data.

Errors

Was this page helpful?
Previous

Update Snap In

Next
Built with
Success.

Resources Snap Ins (POST)

The event sources for the snap-in.

The inputs for the snap-in.

The ID of the snap-in to get resources for.

Gets snap-in resources for a user in a snap-in.

Bearer authentication of the form Bearer <token>, where token is your auth token.