Get apps integration authentication with brand
The app integration id to filter.
The code to filter.
The name of filter.
The description of filter.
The project id of filter.
The client email of filter.
The client id of filter.
The client secret of filter.
The private key of filter.
The redirect URI of filter.
The scope of filter.
The auth endpoint of filter.
The token endpoint of filter.
The icon URL of filter.
The tags of filter.
The status of filter.
The sort data field of the pagination.
The sort order of the pagination.
The page number of the pagination. Default value is 0.
The page size of the pagination. Default value is 200.
The brand URL of the request. This is used to identify the brand.
YOUR_BRAND_URL
This is used to authenticate the request. If the request is not authenticated, the server will return a 401 Unauthorized response.
YOUR_AUTH_KEY
GET /api/v1/app-integrations/authentication HTTP/1.1
Host: protocol.jframework.io
Brand-URL: text
Auth-Key: text
Accept: */*
{
"success": true,
"statusCode": 200,
"message": "The request was successful.",
"data": [
{
"appIntegration": {
"type": "PaymentGateway",
"name": "Stripe",
"domain": "https://stripe.com",
"description": "Stripe payment gateway",
"logoURL": null,
"status": "Active",
"id": "sApKpllz4sAplsmzha"
},
"isDefault": false,
"status": "Active",
"description": "description",
"tags": "tags",
"iconURL": "iconUrl",
"tokenEndpoint": "tokenEndpoint",
"id": "sApKpllz4sAplsmzha",
"authEndpoint": "authEndpoint",
"redirectURI": "redirectUri",
"clientSecret": "clientSecret",
"clientId": "clientId",
"projectId": "projectId",
"name": "name",
"code": "code",
"scope": "scope"
}
],
"errors": []
}
Last updated
Was this helpful?