We’re developing an app that creates orders from different marketplaces using the GraphQL Order Creation mutation. We need to register our channels using the sourceName attribute, and we’ve submitted the required Google form four times over the past two weeks (as per the attached picture):
However, we haven’t received any confirmation or response, which is making it difficult to move forward with our development. I’m hoping someone who has gone through or knows about this process and can share their information/experience.
A few specific questions:
Did you receive any confirmation after submitting the channel registration form?
How long did the approval process take?
Once approved, where exactly can we find our registered channels in the Partner Dashboard? (The documentation mentions they’ll be in our Apps Marketplace extension)
We’re keen to implement this correctly and would really appreciate any insights from anyone who knows about this process.
I think I responded to the DM, but let me know if not. From what I can see I still do not have the channels set up - is there anything else that is needed from me?
Did you receive any confirmation after submitting the channel registration form?
No I didn’t. I was fortunate as I raised the question on here, and Liam responded, but other than that I did not receive any follow up from the Shopify team.
How long did the approval process take?
It took two and half weeks for the new channels to be registered and added for my app. As Liam helped with regards to this (after I raised this question on the community), I am not sure if this is quicker or longer than most.
Once approved, where exactly can we find our registered channels in the Partner Dashboard?
Just in case anyone has had issues in finding the channels that have been set up under the SourceName request, I have found that the following query can be run through GraphQL to retrieve all the available channels for a given shop:
query {
shop {
name
channelDefinitionsForInstalledChannels {
channelDefinitions {
channelName
handle
id
isMarketplace
subChannelName
}
}
}
}