provisionAddon — Provisioning SiteLock PCI compliance reporting

Each PCI subscription entitles the user to complete a Self Assessment Questionnaire (SAQ) for one Merchant Services Provider (MSP). When provisioning this add-on, the user may want to purchase more than one subscription. For example, when the user needs to provide a SAQ to two or more MSPs for two or more merchant accounts. All PCI subscriptions can be provisioned in one request and can be attached to the same SiteLock site_id.

The API endpoint is:

https://api.sitelock.com/v1/partner

Request format

The example request contains three instances of the addonInfo element, one for each subscription purchased. The following explanation documents one request.

  • SiteLockOnlineRequest: This element is used to delineate the full API request.

    • authentication: The partner’s username, password, and branding

      • username: The partner’s API username

      • password: The partner’s API password

      • partner: (Optional) The brand name to use in messaging

    • provisionAddon: The method name

      • addonInfo: (Repeatable) The subscription to provision

        • account_id: A valid SiteLock account ID. See also Provisioning an add-on as a standalone product.

        • subscription: A partner-specific plan ID that identifies this add-on

        • amount: (Optional) The decimal amount the user was billed for this add-on

          This element is not optional when partner invoicing is based on a revenue sharing agreement.
        • renewal_date: (Optional) A date to be used for renewal

Example request

<SiteLockOnlineRequest>
    <authentication>
        <user>Username</user>
        <password>Password</password>
    </authentication>
    <provisionAddon>
        <addonInfo>
            <account_id>442676</account_id>
            <amount>129.95</amount>
            <subscription>XXX</subscription>
        </addonInfo>
        <addonInfo>
            <account_id>379430</account_id>
            <subscription>XXX</subscription>
            <renewal_date>2015-01-01</renewal_date>
        </addonInfo>
        <addonInfo>
            <account_id>15905</account_id>
            <subscription>XXX</subscription>
        </addonInfo>
    </provisionAddon>
</SiteLockOnlineRequest>

Response format

  • SiteLockOnlineResponse: This element is used to delineate the full API response.

    • provisionAddon: The method name

      • addonStatuses: This element has no attributes.

        • addonStatus: (Repeatable) This element corresponds to the addonInfo element in the request

          • account_id: The SiteLock account ID from the provisionAddon request

          • site_id: The SiteLock site ID from the provisionAddon request

          • subscription: The plan ID provided in the subscription field from the provisionAddon request.

          • subscription_id: A unique value used to identify the instance of the service. This can be used in requests to deleteAddon.

          • status: The value can be one of the following:

            • ok: Success return value

            • error: Error return value. The message element contains more detail.

          • code: (Optional) This element is present when the value of status is error. To view a list of possible error codes, see Error codes.

          • message: The detailed error or success message, for example:

            • PCI Subscription added ok

            • Invalid/Unknown Account ID

          • mid: This element is blank. it’s retained for compatibility purposes only.

Since multiple provisioning requests can be submitted at one time, the status of an individual provisioning request should be determined by reading the status and message fields of the specific addonStatus element. To find the addonStatus element in question, use the site ID and subscription plan ID submitted in the provisionAddon request. In the following example, the first two requests to provision this add-on succeeded, whereas the third one failed because the account specified was invalid for this partner.

Example response

<SiteLockOnlineResponse>
    <provisionAddon>
        <addonStatuses>
            <addonStatus>
                <account_id>442676</account_id>
                <site_id>1000297</site_id>
                <subscription>631</subscription>
                <subscription_id>1234</subscription_id>
                <status>ok</status>
                <message>PCI Subscription added ok</message>
                <mid></mid>
            </addonStatus>
            <addonStatus>
                <account_id>442676</account_id>
                <site_id>379430</site_id>
                <subscription>632</subscription>
                <subscription_id>1254</subscription_id>
                <status>ok</status>
                <message>PCI Subscription added ok</message>
                <mid></mid>
            </addonStatus>
            <addonStatus>
                <account_id></account_id>
                <site_id>15905</site_id>
                <subscription>632</subscription>
                <status>error</status>
                <code>IAI</code>
                <message>Invalid/Unknown Account ID</message>
                <mid> </mid>
            </addonStatus>
        </addonStatuses>
    </provisionAddon>
</SiteLockOnlineResponse>