Hi team, is there a way I can query a specific publisher’s publisher ID using Rest API? I am looking to automate the creation of private apps with designated publishers. It looks like publisher ID is required when creating private apps with assigned publishers. Thanks in advance!
Below REST APIv2 query can help to get the list of all or specific publisher’s details such as publisher ID.
https://<tenant-name>/api/v2/infrastructure/publishers?fields=publisher_id%2Cpublisher_name
Yes, this REST APIv2 query will give the list of all publisher details.
To query a specific publisher details, publisher_id field is needed. But there is no other query available to fetch the publisher_id of a specific publisher.
Thanks,
"Invalid publisher id, which must be an integer."
For visualization purposes, the publisher IDs are set like these:
"publisher_id": [
"123",
"456"
]
Shouldn't be many publishers inside publishers scope [] but single inside publisher scope {}? Like this:
"publishers": [
{
"publisher_id": "1",
"publisher_name": "Publisher One"
},
{
"publisher_id": "2",
"publisher_name": "Publisher Two"
}
] "publishers": [
{
"publisher_id": "string",
"publisher_name": "string"
}
],
Thanks,
"Invalid publisher id, which must be an integer."
For visualization purposes, the publisher IDs are set like these:
"publisher_id": [
"123",
"456"
]
Here is the schema to update an app with multiple publishers:
{
"app_name": "test-app",
"host": "app.example.com",
"clientless_access": false,
"private_app_protocol": "http",
"protocols": [
{
"type": "tcp",
"ports": [
"80",
"443"
]
}
],
"publishers": [
{
"publisher_id": "17"
},
{
"publisher_id": "10"
},
{
"publisher_id": "21"
}
],
"tags": [],
"trust_self_signed_certs": "False",
"id": "15"
}
Sign up
Already have an account? Login
Sign in or register securely using Single Sign-On (SSO)
Employee Continue as Customer / Partner (Login or Create Account)Login to the community
Sign in or register securely using Single Sign-On (SSO)
Employee Continue as Customer / Partner (Login or Create Account)Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.



