How to use itunes user id without giving payment details

Im trying to login into itunes but due to payment details im unable to go further in that, if any one is having resolution on this please let me know.

Hello there Monster56,
It sounds like you want to use your Apple ID in iTunes with no payment info. This article will help you do that:
Change or remove your payment information from your iTunes Store account (Apple ID) - Apple Support
Click to open your account in iTunes. (You might need to sign in with your Apple ID.)
Alternatively, you can:
Open iTunes.
Click iTunes Store.
Click Sign In and enter your Apple ID.
Click your Apple ID and select Account Info.
From the Account Information page, click Edit to the right of Payment Type.
You can see the payment methods that the iTunes Store accepts in the Payment Type section. If you want to remove the payment method, select None in the Payment Type section. See what to do if None isn't showing or you can't select it.
Change your information and click Done.
After you change your payment information, the iTunes Store places an authorization hold on your credit card.
Thank you for using Apple Support Communities.
Take care,
Sterling

Similar Messages

  • How to use iTunes gift card without shipping

    How can you purchase a gift card on Apples website and then use the credits immediately!?

    I'm sorry, but there is nothing that I can do to help you with this situation. I don't know why, but many people have problems when they try to buy gems in the Clash of Clans game. Personally, I wouldn't touch the game with a ten foot pole, but that's just my opinion.
    You will have to contact iTunes Store Support and ask for their help. You can email them from here.
    https://getsupport.apple.com/Issues.action

  • HT5057 iTunes account attached to debit card. How to use iTunes gift cards without charging debit card?

    Hey everyone! I have an iTunes account and attached to that account I have a debit card. I recently got some iTunes gift cards and would like to use them as the main source to fund purchases until they run out and then go back to using my debit card. How do I do this? Do I have to delete my debit card info and add the gift card info or is there a way to keep the debit card info listed but use the gift cards first?
    Thanks so much for all your help. Not sure how to retrieve any disscussions but I'll figure it out somehow.

    You can redeem iTunes gift cards by clicking "Redeem" under Quick Links at the top right of the iTunes store.
    Gift card credit is automatically used before your debit card, so there is no need to remove it. After your credit is used your debit card will be charged again.

  • How to redeem iTunes gift card without a credit card

    How to redeem iTunes gift card without a credit card

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • HT201303 how to use itune for my iphone?

    how to use itune ?

    Hi Rashid,
    To use itunes for Ur iPhone click http://www.apple.com/itunes/how-to/#video-sync
    Setting up syncing
    Tutorial:
    Before setting up syncing you should download and install the latest version of iTunes. Wi-Fi syncing requires iTunes 10.5 or later and iOS 5 or later. You can change your sync options at any time. Each time you sync, content is synced between your iOS device and computer to reflect new, updated, or deleted content.
    USB syncing
    Open iTunes.
    Connect the iOS device to your computer using the included USB cable and select it in iTunes under Devices on the left-hand side:
    Some tabs may not appear if you do not have corresponding content in your library. For example, if you do not have any podcasts in your library, the corresponding Podcast tab will not appear.
    Click Apply, in the lower-right corner of the screen, to sync.
    Wi-Fi syncing
    Open iTunes
    To set up Wi-Fi syncing, connect your iOS device to your computer with the included USB cable. Select your device under Devices on the left-hand side.
    In the Summary tab, select "Sync with this [device] over Wi-Fi".
    Whenever the computer and the iOS device are on the same network, the iOS device will appear in iTunes, and you can sync it. The iOS device will sync automatically when all of the following are true:
    The iOS device is plugged in to power
    iTunes is open on the computer
    The iOS device and the computer are on the same Wi-Fi network
    While the iOS device appears in the left-hand column of iTunes, you can select the content tabs and configure sync options.
    Click Apply or Sync to sync the iOS device.
    If the iOS device does not appear in the Devices section or you are unable to sync, please see this article for troubleshooting.
    What you can sync
    Applications
    Audio content—music, podcasts, audiobooks, and iTunes U content
    Bookmarks
    Books
    Contacts
    Calendars
    Movies and TV shows
    Photos
    Notes
    Documents (File Sharing apps only)
    Ringtones
    Additional Information
    The first time you sync the Info tab with your iOS device, you are asked if you want to merge data, replace data on the service, or replace the data on your computer from the following applications:
    Mac: Address Book, iCal, Microsoft Entourage, or Microsoft Outlook 2011
    PC: Microsoft Outlook, Outlook Express, Windows Addressbook (XP) and Windows Contacts (Vista and Windows 7)
    For more information about syncing your device with your computer, see the user's guide or see this article.

  • Re: [SunONE-JATO] Re: How to use a tiled view without a model

    I'm not sure what is different for you now. You still parse the string
    and put it into a data structure. Before the data structure was a
    vector, in JATO its just a model with a "hidden" data structure (a hash
    map).
    MVC only really comes into play when you talk about where your write
    this code, and where the data structure is being stored. So really, JATO
    takes care of half of the MVC'ness of it all (where the data is store).
    You just decide where to be the code to populate the model.
    Make sense?
    Is there something different required of you in JATO in this scenario
    that I am not grasping?
    c
    Hoskins, John D. wrote:
    Thanks for the feedback.
    The problem I was solving involved a single string, which contained
    delimited subsets of information.
    The string looked like
    this:"time|analyst|description|time|analyst|description|..."
    In ND, I parsed it apart into it's components (time vector, analyst vector,
    description vector), populated the repeated.
    With JATO, how would I make a model for something that doesn't have a
    database component like this?
    I'm pretty new to this MVC thing, so bear with me.
    John D. Hoskins
    Telephone & Data Systems
    Application Development & Support
    Voice: 608.664.8263
    Fax: 608.664.8288
    Email: john.hoskins@t...
    -----Original Message-----
    From: Craig V. Conover [mailto:<a href="/group/SunONE-JATO/post?protectID=219212113009229091025149066024064239039098031198039130252055210">craig.conover@s...</a>]
    Sent: 6/26/2002 3.22 PM
    Subject: Re: [SunONE-JATO] Re: How to use a tiled view without a model
    I guess the only thing "weird" (for lack of a better term) about what
    you are doing is that your are populating the model on the "display
    cycle". Typically, the cycle goes like this:
    Request -> populate model -> update data store -> retrieve data to
    populate model -> display data
    some of the above steps are optional but hopefully you get the point I
    am making.
    So what you are doing is:
    Request -> populate model/display data
    If it works for you, then it's not necessarilly wrong. But I would
    probably have my model populated before I forwarded to the target
    (displaying view bean) or at a minimum, in the begin display event of
    the view bean or the tiled view, but not during the iteration of the
    tiled view.
    c
    jhoskins wrote:
    Craig,
    Thanks for the pointers. I ended up doing something else. I set the
    models setSize() method to set the max size, and as the tiles fields
    iterated, populated the value from some vectors I had the data in
    already. Is this solution fraught with peril and will ultimately fail,
    or should I try your way?
    John
    --- Craig V. Conover wrote:
    John,
    Check out the docs for DefaultModel. There is an appendRow() method.
    So get your tiledview's primary model (the tiledview's primary model
    should be set to use an instance of DefaultModel), model.appendRow(),
    then model.setValue("fieldname", value) for each value.
    Rinse, repeat as needed.
    c
    jhoskins wrote:
    I would like to use a tiled view, but populate the fields manually.
    Any pointers about where I can set the size of the tiled view? I tried
    setMaxDisplayTiles() in the beginDisplay, but it won't get down and
    generate the rows.
    John Hoskins
    To download the latest version of JATO, please visit:
    http://www.sun.com/software/download/developer/5102.html
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    To download the latest version of JATO, please visit:
    http://www.sun.com/software/download/developer/5102.html
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    To download the latest version of JATO, please visit:
    http://www.sun.com/software/download/developer/5102.html
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    To download the latest version of JATO, please visit:
    http://www.sun.com/software/download/developer/5102.html
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp

    Craig,
    Thanks for the pointers. I ended up doing something else. I set the
    models setSize() method to set the max size, and as the tiles fields
    iterated, populated the value from some vectors I had the data in
    already. Is this solution fraught with peril and will ultimately fail,
    or should I try your way?
    John
    --- "Craig V. Conover" wrote:
    John,
    Check out the docs for DefaultModel. There is an appendRow() method.
    So get your tiledview's primary model (the tiledview's primary model
    should be set to use an instance of DefaultModel), model.appendRow(),
    then model.setValue("fieldname", value) for each value.
    Rinse, repeat as needed.
    c
    jhoskins wrote:
    I would like to use a tiled view, but populate the fields manually.
    Any pointers about where I can set the size of the tiled view? I tried
    setMaxDisplayTiles() in the beginDisplay, but it won't get down and
    generate the rows.
    John Hoskins
    To download the latest version of JATO, please visit:
    http://www.sun.com/software/download/developer/5102.html
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp

  • How to use a user defined function module in IP

    Hi All,
    Can you please guide me on how to use a user created function module in IP? My requirement is to have 2 exit function modules to be used in IP to load the falt file data into a cube..
    Regards,

    Hi,
    /people/marc.bernard/blog/2007/11/25/how-to-load-a-file-into-sap-netweaver-bi-integrated-planning-part-1
    thanks to Marc Bernard
    Regards

  • How to use itunes gift card to buy apps on ipad 2? Do I need a credit card for it?

    how to use itunes gift card to buy apps on ipad 2? Do I need a credit card for it?

    I'm sorry, but there is nothing that I can do to help you with this situation. I don't know why, but many people have problems when they try to buy gems in the Clash of Clans game. Personally, I wouldn't touch the game with a ten foot pole, but that's just my opinion.
    You will have to contact iTunes Store Support and ask for their help. You can email them from here.
    https://getsupport.apple.com/Issues.action

  • How to use a user defined function in XI

    Hi Experts,
    I would like learn how to use a user defined function  in Xi during mapping . Is there any step by step on that.
    Besides during when me make communcaton channels I see the following tabs...Paramters ..Identifiers ...Module...
    The module that is given here ...where and how it is used.

    Hi,
    You can write UDFs in java in Graphical mapping to enhance your XI Graphical mapping functionality
    The steps for doing it would be:
    1. Click on Create New function Button found on Bottom left corner on your XI Mapping window.
    2. Write your java code.
    3. Run the Mapping Test as usual.
    >>The module that is given here ...where and how it is used.
    The adapters in the Adapter Framework convert XI messages to the protocols of connected external systems and the other way around. When doing so, some
    functionality might need to be added specific to a situation which is possible with the use of custom modules.
    Typical example would be validation of file content when using a File Adapter or modification of the message payload to a common content structure which is not supported by any of the standard SAP modules.
    An Adapter module is developed as an Enterprise Java Bean and is called locally by the Adapter.
    An example on modules :
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/da5675d1-0301-0010-9584-f6cb18c04805">How to develop a module for reading file name in a sender file adapter XI 3.0</a>
    Cheers,
    Chandra

  • How to use ITunes France when you live in Uk ?

    how to use ITunes France on IPad ou IPhone when you live in UK ?

    Ok thanks,
    but living in uk do you think I can manage both addresses France and London ID with Apple?
    Can I keep my Apple ID UK ?
    On my Ipad, I am automatically directed on the uk store . My IPhone could still work with the Uk ID if I change it for France one?
    Sorry but I am a bit confused

  • Need help how to use itunes card to download music

    Need help how to use itunes card to download music

    If you want to add the iTunes card to your account, then in the iTunes app on the iPad you should be able to scroll to the bottom of the Music tab and there should be a Redeem button - there is more info here : http://support.apple.com/kb/HT1574

  • How to use iTunes Match?

    How to use iTunes Match?

    CMARINEAU wrote:
    Question: is there supposed to be a iCloud symbol next to every song that matches in iTunes?  I only have "unavailable to match" clouds.
    No. Tracks will only have a cloud in the "iCloud Download" column if they are unprocessed by iTM. If a track is deleted from the iTunes library and is available for download there will be a slightly different cloud icon in that column with an arrow pointing down to incidate it is available to download.
    Tracks that have been processed or are resident in the iTunes library will have nothing in the "iCloud Download" column.

  • How to use X-Fi Effects without selecting SB as the default sound device?

    How to use X-Fi Effects without selecting SB as the default sound device?Hello everyone,
    That's my situation.
    I have Sound Blaster X-Fi Go sound card and I am using SRS HD Audio Lab. SRS HD Audio Lab was selected as the default audio device and X-Fi effects (X-Fi CMSS-3d, Equalizer etc.) was working without any problem in Windows Xp. I have Windows 7 now and when i select SRS HD Audio Lab as the default device, Creative effects are not working, i must select "SB X-Fi Go!" to get them working but i can't use SRS HD Audio Lab in that case. SRS is also using SB X-Fi Go sound card as the output and volume adjustment on console launcher is working but something is disabling the effects. Any solutions to enable effects ?
    Thanks.

    If the kernel modules for your sound card and webcam both support the index parameter (use modinfo to find out) then adding
    options <name_of_preferred_card's_kernel_module> index=0
    options <name_of_second_card's_kernel_module> index=1
    to /etc/modprobe.d/modprobe.conf (or another modprobe conf file of your choice) should solve the problem.

  • HT1212 I don't know how to use Itunes 11 So i can't unlock my phone

    I don't know how to use Itunes 11 So i can't unlock my phone

    If your iPhone is disabled, then you must use iTunes on your computer to restore iOS. You don't have to be an expert using iTunes, just follow the instructions here: http://support.apple.com/kb/ht1414

  • How to use "find my phone" without using iCloud

    How to use “find my phone” without using iCloud?
    Previously, when I used my mobile me account I was not forced to use iCloud.  Is there a way around this?

    Just ignore any prompts you get. Don't click the move to iCloud button and don't visit me.com/move. Just keep using mobileme as you have been.
    The ONLY clickable button is "Open iCloud.com".  I have NO other options. (Using Mac OS on a MacPro)
    ( somehow my reply was marked as a correct answer, I did not do this, and I can find a way to remove it.)

Maybe you are looking for

  • Can't save mails to hard disk

    I want to save a mail to my hard disk; I go thru the whole procedure - and nothing happens. No text / rtf mail anywhere, no alert whatsoever. What might be wrong? Thanks a lot Peter

  • Viasualize attached files withou saving in the computer

    I would like to be able to open my attached files without saving in my computer

  • Deadline Branch and Wait Step in BPM

    hi, I have 13 Suppliers for which i need to send the XML from a single IDOC PO. All the receivers are configured in the interface determination. For each of the receivers based on the response received, if i get any error "System Error" or "Applicati

  • On-line Fireworks Class

    Has anyone taken the on-line Fireworks class with the HTML Writers Guild? Was it worth your time and money? Thanks. -Tom

  • COPA Product wise profitability

    Hi Sapians I have execute an order settlement and variance is successfully posted in COPA Value field VV002(Qty variance) In product wise profitability report. System shows as follows: Product   Qty    Sales value   Cost @ Std price  order Variance V