Supplying tour dates for artists - spotify

I get questions about the tour dates an artist can activate in their verified profile. Is it possible to supply these via an API on Spotify?
Thanks!
Regards,
Marlon

No, it's not possible. You might want to check out Songkick's API with over 3 million concerts though.

Related

Stripe List a Customer's PaymentMethods by multiple types

How can we retrieve the list of payment methods attached to a customer with type= us_bank_account and card at one request? The type parameter can only support up to one value at a time.
https://stripe.com/docs/api/payment_methods/customer_list
curl -G https://api.stripe.com/v1/customers/cus_MT5jjlXfiQl4dH/payment_methods \
-u {Key} \
-d type=card
This is Stripe's answer:
Hello there,
Thank you for your patience. Claire sent me your case regarding
payment_method listing, I'll do my best to help :
Currently, listing both card and us_bank_account payment_methods would
require two calls, each with a different type filter.
The only feature that would circumvent this at this time would be
Stripe Sigma, by querying the Payment_methods table :
https://stripe.com/docs/stripe-data/write-queries
I'll discuss your inquiry with our engineers so that a solution may be
implemented in this regard. I would suggest subscribing to our
developer updates for new features like these :
https://go.stripe.global/subscribe
I hope this information helps. Let me know if I can be of further
assistance. Best, Lucas

How display price in ml in Stripe API Checkout?

With Stripe API Checkout, does anyone know how to change what I underlined ?
I need to display a price in ml. Example: I must write /100 ml and not /piece
This value isn't customizable. I think the best way to handle this is to add the size to the product name, "Le Baume (100ml)".

SUITETALK- Netsuite searchAdvanced gives line price in base currency

Can anyone please help us with this?
We are using Netsuite advanced search to pull sales order for different subsidiary. We are able to get all the line items(except tax itmes) but its consists the amount in base currency. Is there any way we can get response with exact amount visible in UI.
Also Its very hard to understand the basic of Netsuite SUITE TALk- SOAP. Do you recommend any resources that will ease learning?
Thanks
Just an update with this question, with Advanced search we are able to get the foreign currency of Subsidiary using fxCost in columns But line items doesn't have this option. This causes whole another problem for us. Then we decided to use SAVED SEARCH. Saved search provides us feature to disable foregin currency just by choosing CONSOLIDATED EXCHANGE RATE to none. We are using saved search ID in the Advanced search paramater ie using savedSearchScriptId from Netsuite Schema.
Hope it would be helpful to anyone who is strugglign with this kind of issue.
Thanks
For tax line in fx currency, prefer to do Tax Amount/exchange rate.

Find credit card by type and expiration date

According to this "Account Updater only works with Visa and Mastercard"
So I want to find customers whose cards are going to expire in the next month and are from a different type than Visa or Mastercard.
In the docs I see I can filter by expiration date, but nothing about cardType (it mentions cardholderName)
var stream = gateway.customer.search(function (search) {
search.creditCardExpirationDate().is("12/13");
});
Is there a way I can filter this in the api request or should I need to get all results and filter out Visa and Mastercard customers?
Thanks.
Full disclosure: I work at Braintree. If you have any further questions, feel free to contact support.
Both you and #michelem are correct: the current api doesn't expose a method for filtering customers based on whether they contain a specific type of card. Your approach of filtering the results based on the Payment method is the best approach.

Can I get list of all categories that foursquare API could return to me?

Can I get list of all categories that foursquare could return to me ?
https://developer.foursquare.com/docs/responses/category.html (link to category object description)
I know that the new categories could be created, and some deleted. But I just would like to prepare my app to be able to handle some categories in special way, and I need to know in advance what they could be.
Thanks for time in advance.
This should include all possible Foursquare categories. It's this endpoint: https://developer.foursquare.com/docs/api/venues/categories
Foursquare also provides an up-to-date category hierarchy without using the API. Useful if you just want to take a look at the list without doing a call.
Interestingly on that page, they also provide "Supported Countries" where the category "can only appear on venues in those countries".
https://developer.foursquare.com/categorytree

Resources