Add Google Client ID to Domain
Run in Apidog
Associates a Google OAuth Client ID with one or more domain IDs for a specific application, allowing the app to authenticate users from those domains securely.
Request Add parameter in header cmr-x-api-key
Example: cmr-x-api-key: ********************
or
Body Params application/json
{
"userId" : "7B6XC3JFBMMK9YGT52BM3WZPHHE8" ,
"domains" : [
"example.com" ,
"goodlife.com" ,
"..."
] ,
"clientId" : "<google-oauth-client-id>" ,
"app" : "<AppName>"
} Request Code Samples
curl --location --request POST 'https://customers.coldmailreseller.com/api/v1/integration/domains/add-client-id' \
--header 'cmr-x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"userId": "7B6XC3JFBMMK9YGT52BM3WZPHHE8",
"domains": [
"example.com",
"goodlife.com",
"..."
],
"clientId": "<google-oauth-client-id>",
"app": "<AppName>"
}' Responses application/json Generate Code
{
"status" : 200 ,
"message" : "Client ID will be added to the domains soon."
}
Modified at 2025-10-29 17:06:21