Mapping Your Resources to Seam Resources
Learn how Seam makes it easy to tag Seam resources with your own internal IDs.
Associating Connected Accounts with Your Customers
Create a Connect Webview for a Specific Customer
seam.connect_webviews.create(
accepted_providers = your_list_of_providers,
customer_key = "customer-id" # Your unique identifier for the customer
)ConnectWebview(
connect_webview_id='12345678-1234-1234-1234-123456789012',
customer_key='customer-id',
...
)# Include your unique identifier for the customer.
curl -X 'POST' \
'https://connect.getseam.com/connect_webviews/create' \
-H 'accept: application/json' \
-H "Authorization: Bearer ${SEAM_API_KEY}" \
-H 'Content-Type: application/json' \
-d "{
\"accepted_providers\": \"${your_list_of_providers}\",
\"customer_key\": \"${customer-id}\"
}"{
"connect_webview": {
"connect_webview_id": "12345678-1234-1234-1234-123456789012",
"customer_key": "customer-id",
...
},
"ok": true
}Retrieve All Connected Accounts for a Specific Customer
Associating a Seam Space with Your Own Resource
Associating a Seam User Identity with Your User
Associating a Seam Access Grant with Your Own Resource
Retrieving a Resource Using the <resource>_key
<resource>_keyLast updated
Was this helpful?

