Lines 3312-3363markdown
3313 --email The email address that you use to log into Transcend
3314 --password The password for your account login
3315 --apiKeyTitle The title of the API key being generated or destroyed
3316 --file The file where API keys should be written to
3317 --scopes The list of scopes that should be given to the API key [View Only|Full Admin|Rotate Hosted Sombra keys|Manage Global Attributes|Manage Access Controls|Manage Billing|Manage SSO|Manage API Keys|Manage Organization Information|Manage Email Domains|Manage Data Sub Categories|View Customer Data in Privacy Requests|View Customer Data in Data Mapping|View API Keys|View Audit Events|View SSO|View Scopes|View All Action Items|Manage All Action Items|View Employees|View Email Domains|View Glob ...
3318 [--deleteExistingApiKey/--noDeleteExistingApiKey] When true, if an API key exists with the specified apiKeyTitle, the existing API key is deleted [default = true]
3319 [--createNewApiKey/--noCreateNewApiKey] When true, new API keys will be created. Set to false if you simply want to delete all API keys with a title [default = true]
3320 [--parentOrganizationId] Filter for only a specific organization by ID, returning all child accounts associated with that organization
3321 [--transcendUrl] URL of the Transcend backend. Use https://api.us.transcend.io for US hosting [default = https://api.transcend.io]
3322 -h --help Print help information and exit
3327**Generate API keys for cross-instance usage**
3330transcend admin generate-api-keys \
3331 --email=test@transcend.io \
3332 --password="$TRANSCEND_PASSWORD" \
3333 --scopes="View Email Templates,View Data Map" \
3334 --apiKeyTitle="CLI Usage Cross Instance Sync" \
3335 --file=./working/auth.json
3338**Specifying the backend URL, needed for US hosted backend infrastructure**
3341transcend admin generate-api-keys \
3342 --email=test@transcend.io \
3343 --password="$TRANSCEND_PASSWORD" \
3344 --scopes="View Email Templates,View Data Map" \
3345 --apiKeyTitle="CLI Usage Cross Instance Sync" \
3346 --file=./working/auth.json \
3347 --transcendUrl=https://api.us.transcend.io
3350**Filter for only a specific organization by ID, returning all child accounts associated with that organization**
3353transcend admin generate-api-keys \
3354 --email=test@transcend.io \
3355 --password="$TRANSCEND_PASSWORD" \
3356 --scopes="View Email Templates,View Data Map" \
3357 --apiKeyTitle="CLI Usage Cross Instance Sync" \
3358 --file=./working/auth.json \
3359 --parentOrganizationId=7098bb38-070d-4f26-8fa4-1b61b9cdef77
3362**Delete all API keys with a certain title**
Long lines were clipped for display.