Podio - Is it possible to assign an owner/creator to items? - podio

I have looked in the documentation regarding this and haven't been able to find anything. If it is possible, I would appreciate if you let me know where
Thank you

You cannot assign a creator to an item. The item_creator is the authenticated Podio entity that created the item.
You could add member fields to the app and assign anyone you want in that.

Related

Zapier update In podio says i don't have permission but clearly I do

Also checked box in podio app to allow users to update and modify items.
Put still get this error in zapier when trying to update
"The app returned "The user with id 1653273 does
not have the right update on item with id 6". It looks like your
connected account doesn't have permission to complete this step. You
should contact the administrator for your account and make sure you
have the needed permissions."
David here, from the Zapier Platform team.
That looks like an issue on the Podio end that Zapier is surfacing. I'd try reconnecting the account in Zapier (maybe you need a fresh token to pick up the permission changes?). If that doesn't work, Podio support is probably your best bet for getting an answer. They'll have the tools to troubleshoot your issue.
Pavlo here, from Podio team :)
Something is wrong with your config, I'm 100500% sure that item with id 6 is not yours and you don't have rights to update it :) Please debug your flow and ensure that you are trying to modify correct item.
i didn't realize item id was a universal id within podio and not just something that would reference in that app. so id 6 seemed reasonable from that perspective as that app only had a couple items in it to test. so i have not gotten the right value from the zapier item look up go to to the zapier item update and it worked flawlessly.

Why is BigCommerce API POST request not getting through?

I've been for months trying to get more complex type of POST requests to go through and somehow I've never been able. Those like creating a product or a brand are always easy, but when u get to creating complex-rules and modifiers your API seems to close all the doors...
I'm trying to create a Complex-Rule for changing the image when two or more option values are selected. I tried every possible combination of what I think could be the needed values and nothing. Is it possible that I'm misinterpreting what the array of inline_response_200_19_conditions are and how to use them?
This is the response I get every time...
Any help here would be very much appreciated and would save me from doing more than 25.000 combinations and image uploads by hand... :/
Thanks a lot!

Need to pass lead custom field value to partner when converting to lead to partner in OpenERP 7

I'm new to OpenERP 7 and I'm trying to pass a custom field value from Lead to Partner when I convert a Lead to Partner.
I understand that I need to modify or add some functions in wizard directory of my new module (I assume I need to extend the crm module)
Is correct? Anyone can recommend me any example or let me know some tips?
Thanks in advance.
There are actually two methods defined in crm._lead_create_partner and _lead_create_contact. These methods create partner and contact respectively. You can override these methods(first use the _lead_create_partner) to pass value to partner.

Shopify API: Create a Promotion?

Using the Shopify API, is there a way to creation promotions for your store? If not, is there a way to programmatically create promotions in Shopify? (short of using CURL posts to the admin)
That is, I can create a promotion by hand using the admin and navigating to the Promotions and clicking the Add a discount code link. I'd like to be able to do the same thing programmatically, or to know for certain this isn't possible. I don't see any obvious method on the api list, but it seems like something should be an API method.
Unfortunately they don't allow it... I resorted to creating an interface to do so, though:
https://github.com/MartinAmps/Shopify-Private-APIs
Hope it helps
Edit
I also created a blog post about it.
There is no way to create discounts via the API.
If you want we have made an application that can be used to create discount codes.
Otherwise you can use a tool like Mechanize to automate coupon creation for you, but keep in mind theres a good chance that any time in the future it will break since we don't make any promises to keep our admin the same in the future. Any changes have a good chance of breaking whatever script you'd end up writing.
The Price Rules API is now public and allow any app to create price rules and discount codes.
https://help.shopify.com/api/price-rules
If you're familiar with Rails or you're already using ActiveResource for your Shopify API calls, then you can drop in this modified version of Discount < ActiveResource::Base https://gist.github.com/choonkeat/09a56da222f506e627c5

eBay API - filter items by store/custom categories

My scenario: I have a client with an eBay store with custom categories. On their website, they would like to list the items they have for sale. They would like this list to be filterable by custom category.
I've been searching for a couple days now, and I'm still a bit unsure about the best way to proceed.
From what I can gather, the only way to get a list of categories defined in a store is through the GetStore call in the Trading API. This seems to be supported, though I need to get a user token from my client's eBay account. I will assume this works.
I do not, however, see any method of filtering items based on custom categories. I've looked through the documentation of both the Trading and Finding APIs, but all I see are filters on pre-defined eBay categories.
Is it possible to filter on custom/store categories?
I had a task to link seller products to custom categories and the only way I found is to retrieve a list of custom categories with "GetStore" from Trading API, retrieve all seller items with "findItemsAdvanced" call form Finding API, and loop through all retrieved items and get details with "GetItem" call from Trading API.
After that I could find custom categories under $xml->Item->Storefront->StoreCategoryID and $xml->Item->Storefront->StoreCategory2ID.
After digging through and posting in the eBay forums, I found out that no, it is not possible to filter on custom/store defined categories via the API. The only way to filter on custom/store defined categories is on the eBay hosted store.
This is apparently eBay's way to make the store hosted on their site more feature rich than anything you can do via the API.
Even though this question is old, I believe it interesting to give a more recent answer. As stated above, you cannot directly filter items sold by a store using custom store categories (StoreCategoryID). The easiest way to work around this is using the GetSellerList API using a coarse granularity level, which allows you to get the storeCategoryID of each Item on sale within a starting time range or an end time range. You can then filter the items yourself. Here's a link to a forum answer: https://ebay.custhelp.com/app/answers/detail/a_id/1178
Yes no way to get items by Custom categories.
It sounds like either getCategoryInfo or GetCategories might help you.