Skip to main content
GET
/
1
/
authentications
/
{authenticationID}
curl
curl --request GET \
  --url https://data.us.algolia.com/1/authentications/6c02aeb1-775e-418e-870b-1faccd4b2c0f \
  --header 'accept: application/json' \
  --header 'x-algolia-api-key: ALGOLIA_API_KEY' \
  --header 'x-algolia-application-id: ALGOLIA_APPLICATION_ID'
{
  "authenticationID": "6c02aeb1-775e-418e-870b-1faccd4b2c0f",
  "type": "googleServiceAccount",
  "name": "<string>",
  "platform": "bigcommerce",
  "owner": "<string>",
  "input": {
    "clientEmail": "service-account-name@project-id.iam.gserviceaccount.com",
    "privateKey": "<string>"
  },
  "createdAt": "<string>",
  "updatedAt": "<string>"
}
Required ACL: addObject, deleteIndex, editSettings

Authorizations

x-algolia-application-id
string
header
required

Your Algolia application ID.

x-algolia-api-key
string
header
required

Your Algolia API key with the necessary permissions to make the request. Permissions are controlled through access control lists (ACL) and access restrictions. The required ACL to make a request is listed in each endpoint's reference.

Path Parameters

authenticationID
string
required

Unique identifier of an authentication resource.

Example:

"6c02aeb1-775e-418e-870b-1faccd4b2c0f"

Response

OK

Resource representing the information required to authenticate with a source or a destination.

authenticationID
string
required

Universally unique identifier (UUID) of an authentication resource.

Example:

"6c02aeb1-775e-418e-870b-1faccd4b2c0f"

type
enum<string>
required

Type of authentication. This determines the type of credentials required in the input object.

Available options:
googleServiceAccount,
basic,
apiKey,
oauth,
algolia,
algoliaInsights,
secrets
name
string
required

Descriptive name for the resource.

input
object
required

Credentials for authenticating with a Google service account, such as BigQuery.

  • Option 1
  • Option 2
  • Option 3
  • Option 4
  • Option 5
  • Option 6
  • Option 7
createdAt
string
required

Date of creation in RFC 3339 format.

updatedAt
string
required

Date of last update in RFC 3339 format.

platform
enum<string> | null

Name of an ecommerce platform with which to authenticate. This determines which authentication type you can select.

Available options:
bigcommerce,
commercetools,
shopify
owner
string | null

Owner of the resource.

I