Get app integration
Actions (Beta) ๐งช
- LinkedIn
Integrations
Get app integration
GET
/
account
/
api
/
v1
/
appIntegration
curl --request GET \
--url https://svc.sandbox.anon.com/account/api/v1/appIntegration \
--header 'Authorization: Bearer <token>'
{
"app": {
"authUrl": "<string>",
"displayName": "<string>",
"iconUrl": "<string>",
"domCompletionIndicator": "<string>",
"completionIndicators": [
{
"storage": "local",
"key": "<string>",
"domains": [
"<string>"
]
}
],
"sessionExtractionDomains": [
{
"domain": "<string>"
}
],
"sessionValidation": {
"sessionValidityChecks": [
{
"url": "<string>",
"criteria": [
{
"selector": "<string>",
"exists": true
}
],
"matchRule": "ALL"
}
]
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
App integration ID
Response
200 - application/json
Successful response
App integration response
App integration configuration
Available options:
ALL
, ANY
Was this page helpful?
curl --request GET \
--url https://svc.sandbox.anon.com/account/api/v1/appIntegration \
--header 'Authorization: Bearer <token>'
{
"app": {
"authUrl": "<string>",
"displayName": "<string>",
"iconUrl": "<string>",
"domCompletionIndicator": "<string>",
"completionIndicators": [
{
"storage": "local",
"key": "<string>",
"domains": [
"<string>"
]
}
],
"sessionExtractionDomains": [
{
"domain": "<string>"
}
],
"sessionValidation": {
"sessionValidityChecks": [
{
"url": "<string>",
"criteria": [
{
"selector": "<string>",
"exists": true
}
],
"matchRule": "ALL"
}
]
}
}
}