.. index:: Billing .. _billing: Billing ===================== A representation of the billing status of the user. When the user is in the profile ``Incomplete``, it's required that the user be presented with the followLink if the followLink is present. .. apifields:: .. apifield:: :name: profile :type: string :constraints: should be ``Incomplete``, ``Complete`` or ``N/A``. :required: true The current billing profile the user is in. .. apifield:: :name: followLink :type: string :constraints: optional for profile ``Incomplete``, absent otherwise. :required: false Optional. The link the user should follow, in case the profile is ``Incomplete``. Example ^^^^^^^ .. code-block:: javascript ... "billing": { "profile": "Incomplete", "followLink": "https://www.marktplaats.nl/gegevens" } ...