curl --request GET \
--url https://api-next.ofauth.com/v2/connections \
--header 'apiKey: <api-key>'{
"list": [
{
"status": "active",
"id": "<string>",
"userData": {
"id": "<string>",
"name": "<string>",
"username": "<string>",
"avatar": "<string>"
},
"permissions": [
"<string>"
],
"expiredAt": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"clientReferenceId": "<string>"
}
],
"hasMore": true
}List Link connections
curl --request GET \
--url https://api-next.ofauth.com/v2/connections \
--header 'apiKey: <api-key>'{
"list": [
{
"status": "active",
"id": "<string>",
"userData": {
"id": "<string>",
"name": "<string>",
"username": "<string>",
"avatar": "<string>"
},
"permissions": [
"<string>"
],
"expiredAt": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"clientReferenceId": "<string>"
}
],
"hasMore": true
}active, expired, awaiting_2fa Connections found
Show child attributes
The status of the connection.
active, expired, awaiting_2fa The ID of the connection.
Data could be outdated if the connection is expired, but will be updated once the account has been reconnected.
The permissions of the connection.
The expiration date of the connection.
The creation date of the connection.
The last update date of the connection.
The client reference ID of the connection.
Was this page helpful?