POST
/
create
/
service
/
auth
/
google
/
{YOUR_INTEGRATION_NAME}
Google OAuth API
curl --request POST \
  --url https://7gzkqkjgcg.execute-api.us-east-2.amazonaws.com/stage/create/service/auth/google/{YOUR_INTEGRATION_NAME} \
  --header 'Content-Type: application/json' \
  --data '{
  "GOOGLE_CLIENT_ID": "<string>",
  "GOOGLE_CLIENT_SECRET": "<string>"
}'
{
  "statusCode": 200,
  "body" {
    ...
    compelete: true,
  }
}

Path

YOUR_INTEGRATION_NAME
string
required
The name that you want to use to reference your integration. Must only be alpha numeric with only lower case letters and no special characters except hyphens.

Body

GOOGLE_CLIENT_ID
string
required
The Google Client Id that Google generates for you
GOOGLE_CLIENT_SECRET
string
required
The Google Client Secret that Google generates for you

Response

statusCode
number
Based off of standard HTTP request guidelines
body
object
Information concerning your newly created Google OAuth integration
{
  "statusCode": 200,
  "body" {
    ...
    compelete: true,
  }
}