Allows defining a first-party domain for the Pixel to communicate with Gateway. More details here.
POST https://{capig_domain}/capig/graphql/ _________________________________________________________________________________________________________________ mutation IngressEditingModalMutation( $tenantId: ID! $input: IngressDomainInput ) { tenantMutations(tenantId: $tenantId) { upsertIngressDomain(input: $input) { id ingress cnameResolveSuccess tenantName enhancementTenantIngressVerifiedResult { id tenantIngressVerified } } } } _________________________________________________________________________________________________________ tenantId: ID! _______________________________________________________________________________________________________ input IngressDomainInput { ingress: String! targetDomain: String! }
Field | Description |
---|---|
| Required Unique identifier of the account |
IngressDomainInput
Field | Description |
---|---|
| Required New subdomain that needs be updated |
| Required Partner Gateway Domain |
Field | Description |
---|---|
| Ingress domain object |
Code | Description |
---|---|
401 | Not authorized to upgrade ingress domain |
500 | Internal server error |
Mutation
mutation IngressEditingModalMutation( $tenantId: ID! $input: IngressDomainInput ) { tenantMutations(tenantId: $tenantId) { upsertIngressDomain(input: $input) { id ingress cnameResolveSuccess enhancementTenantIngressVerifiedResult { id tenantIngressVerified } } } }
Variables
{ "tenantId": "IaoreXfj", "input": { "ingress": "capig.advertiser.com", "targetDomain": "capig.targetDomain.com" } }
{ "data": { "tenantMutations": { "upsertIngressDomain": { "id": "IaoreXfj:ingress", "ingress": "capig.advertiser.com", "cnameResolveSuccess": true, "enhancementTenantIngressVerifiedResult": { "id": "IaoreXfj:tenantIngressVerified", "tenantIngressVerified": true } } }