Jump to content

Edit History

jmelich

jmelich

Well, as I can see in the first comment of this post I think the problem is in your XML format.

Apache is not blocking your request given Apache is not checking your request for XML errors, this is done by your webservices endpoint.

So let me tell my procedure to make a POST / PUT and try to reproduce in your server:

1. I make POST to the url https://domain.com/shop/api/customers?ws_key=ABCDEFGHIJKLMNOPQRST123123123

<?xml version="1.0" encoding="UTF-8"?>
<prestashop xmlns:xlink="http://www.w3.org/1999/xlink">
    <customer>
        <id_default_group></id_default_group>
        <id_lang></id_lang>
        <newsletter_date_add></newsletter_date_add>
        <ip_registration_newsletter></ip_registration_newsletter>
        <last_passwd_gen></last_passwd_gen>
        <secure_key></secure_key>
        <deleted></deleted>
        <passwd>123456123</passwd>
        <lastname>Unknown</lastname>
        <firstname>Matthew</firstname>
        <email>matt@mail.com</email>
        <id_gender></id_gender>
        <birthday></birthday>
        <newsletter></newsletter>
        <optin></optin>
        <website></website>
        <company></company>
        <siret></siret>
        <ape></ape>
        <outstanding_allow_amount></outstanding_allow_amount>
        <show_public_prices></show_public_prices>
        <id_risk></id_risk>
        <max_payment_days></max_payment_days>
        <active></active>
        <note></note>
        <is_guest></is_guest>
        <id_shop></id_shop>
        <id_shop_group></id_shop_group>
        <date_add></date_add>
        <date_upd></date_upd>
        <reset_password_token></reset_password_token>
        <reset_password_validity></reset_password_validity>
        <associations>
            <groups>
                <group>
                    <id></id>
                </group>
            </groups>
        </associations>
    </customer>
</prestashop>

2. I make PUT to the url https://domain.com/shop/api/customers/17?ws_key=ABCDEFGHIJKLMNOPQRST123123123 where you have to change the /17 for the id of your new customer.

After that add a <id>17</id> at the xml structure and thats all. 

I also have to say that since I enabled multishop now PUT requests are updating data but disabling the customer given not appear in the backend, for sure is related with some field like active or disabled... 

Anyway, after adding the id in the URL and in the XML. the body of the request will be the following:
 

<?xml version="1.0" encoding="UTF-8"?>
<prestashop xmlns:xlink="http://www.w3.org/1999/xlink">
    <customer>
    	<id>17</id>
        <id_default_group></id_default_group>
        <id_lang></id_lang>
        <newsletter_date_add></newsletter_date_add>
        <ip_registration_newsletter></ip_registration_newsletter>
        <last_passwd_gen></last_passwd_gen>
        <secure_key></secure_key>
        <deleted></deleted>
        <passwd>123456789</passwd>
        <lastname>Presta</lastname>
        <firstname>Presta</firstname>
        <email>presta@mail.com</email>
        <id_gender></id_gender>
        <birthday></birthday>
        <newsletter></newsletter>
        <optin></optin>
        <website></website>
        <company></company>
        <siret></siret>
        <ape></ape>
        <outstanding_allow_amount></outstanding_allow_amount>
        <show_public_prices></show_public_prices>
        <id_risk></id_risk>
        <max_payment_days></max_payment_days>
        <active></active>
        <note></note>
        <is_guest></is_guest>
        <id_shop></id_shop>
        <id_shop_group></id_shop_group>
        <date_add></date_add>
        <date_upd></date_upd>
        <reset_password_token></reset_password_token>
        <reset_password_validity></reset_password_validity>
        <associations>
            <groups>
                <group>
                    <id></id>
                </group>
            </groups>
        </associations>
    </customer>
</prestashop>

 

jmelich

jmelich

Well, as I can see in the first comment of this post I think the problem is in your XML format.

Apache is not blocking your request given Apache is not checking your request for XML errors, this is done by your webservices endpoint.

So let me tell my procedure to make a POST / PUT and try to reproduce in your server:

1. I make POST to the url https://domain.com/shop/api/customers?ws_key=ABCDEFGHIJKLMNOPQRST123123123

<?xml version="1.0" encoding="UTF-8"?>
<prestashop xmlns:xlink="http://www.w3.org/1999/xlink">
    <customer>
        <id_default_group></id_default_group>
        <id_lang></id_lang>
        <newsletter_date_add></newsletter_date_add>
        <ip_registration_newsletter></ip_registration_newsletter>
        <last_passwd_gen></last_passwd_gen>
        <secure_key></secure_key>
        <deleted></deleted>
        <passwd>123456123</passwd>
        <lastname>Unknown</lastname>
        <firstname>Matthew</firstname>
        <email>matt@mail.com</email>
        <id_gender></id_gender>
        <birthday></birthday>
        <newsletter></newsletter>
        <optin></optin>
        <website></website>
        <company></company>
        <siret></siret>
        <ape></ape>
        <outstanding_allow_amount></outstanding_allow_amount>
        <show_public_prices></show_public_prices>
        <id_risk></id_risk>
        <max_payment_days></max_payment_days>
        <active></active>
        <note></note>
        <is_guest></is_guest>
        <id_shop></id_shop>
        <id_shop_group></id_shop_group>
        <date_add></date_add>
        <date_upd></date_upd>
        <reset_password_token></reset_password_token>
        <reset_password_validity></reset_password_validity>
        <associations>
            <groups>
                <group>
                    <id></id>
                </group>
            </groups>
        </associations>
    </customer>
</prestashop>

2. I make PUT to the url https://domain.com/shop/api/customers/17?ws_key=ABCDEFGHIJKLMNOPQRST123123123 where you have to change the /17 for the id of your new customer.

After that add a <id>17</id> at the xml structure and thats all. 

I also have to say that since I enabled multishop now PUT requests are updating data but disabling the user, for sure is related with some field like active or disabled...

Anyway, after adding the id in the URL and in the XML. the body of the request will be the following:
 

<?xml version="1.0" encoding="UTF-8"?>
<prestashop xmlns:xlink="http://www.w3.org/1999/xlink">
    <customer>
    	<id>17</id>
        <id_default_group></id_default_group>
        <id_lang></id_lang>
        <newsletter_date_add></newsletter_date_add>
        <ip_registration_newsletter></ip_registration_newsletter>
        <last_passwd_gen></last_passwd_gen>
        <secure_key></secure_key>
        <deleted></deleted>
        <passwd>123456789</passwd>
        <lastname>Presta</lastname>
        <firstname>Presta</firstname>
        <email>presta@mail.com</email>
        <id_gender></id_gender>
        <birthday></birthday>
        <newsletter></newsletter>
        <optin></optin>
        <website></website>
        <company></company>
        <siret></siret>
        <ape></ape>
        <outstanding_allow_amount></outstanding_allow_amount>
        <show_public_prices></show_public_prices>
        <id_risk></id_risk>
        <max_payment_days></max_payment_days>
        <active></active>
        <note></note>
        <is_guest></is_guest>
        <id_shop></id_shop>
        <id_shop_group></id_shop_group>
        <date_add></date_add>
        <date_upd></date_upd>
        <reset_password_token></reset_password_token>
        <reset_password_validity></reset_password_validity>
        <associations>
            <groups>
                <group>
                    <id></id>
                </group>
            </groups>
        </associations>
    </customer>
</prestashop>

 

jmelich

jmelich

Well, as I can see in the first comment of this post I think the problem is in your XML format.

Apache is not blocking your request given Apache is not checking your request for XML errors, this is done by your webservices endpoint.

So let me tell my procedure to make a POST / PUT and try to reproduce in your server:

1. I make POST to the url https://domain.com/shop/api/customers?ws_key=ABCDEFGHIJKLMNOPQRST123123123

<?xml version="1.0" encoding="UTF-8"?>
<prestashop xmlns:xlink="http://www.w3.org/1999/xlink">
    <customer>
        <id_default_group></id_default_group>
        <id_lang></id_lang>
        <newsletter_date_add></newsletter_date_add>
        <ip_registration_newsletter></ip_registration_newsletter>
        <last_passwd_gen></last_passwd_gen>
        <secure_key></secure_key>
        <deleted></deleted>
        <passwd>123456123</passwd>
        <lastname>Unknown</lastname>
        <firstname>Matthew</firstname>
        <email>matt@mail.com</email>
        <id_gender></id_gender>
        <birthday></birthday>
        <newsletter></newsletter>
        <optin></optin>
        <website></website>
        <company></company>
        <siret></siret>
        <ape></ape>
        <outstanding_allow_amount></outstanding_allow_amount>
        <show_public_prices></show_public_prices>
        <id_risk></id_risk>
        <max_payment_days></max_payment_days>
        <active></active>
        <note></note>
        <is_guest></is_guest>
        <id_shop></id_shop>
        <id_shop_group></id_shop_group>
        <date_add></date_add>
        <date_upd></date_upd>
        <reset_password_token></reset_password_token>
        <reset_password_validity></reset_password_validity>
        <associations>
            <groups>
                <group>
                    <id></id>
                </group>
            </groups>
        </associations>
    </customer>
</prestashop>

2. I make PUT to the url https://domain.com/shop/api/customers/17?ws_key=ABCDEFGHIJKLMNOPQRST123123123 where you have to change the /17 for the id of your new customer.

After that add a <id>17</id> at the xml structure and thats all. 

I also have to say that since I enabled multishop now PUT requests are updating data but disabling the user, for sure is related with some field like active or disabled...

Anyway, after adding the id in the URL and in the XML. the body of the request will be the following:
 

<?xml version="1.0" encoding="UTF-8"?>
<prestashop xmlns:xlink="http://www.w3.org/1999/xlink">
    <customer>
    	<id>17</id>
        <id_default_group></id_default_group>
        <id_lang></id_lang>
        <newsletter_date_add></newsletter_date_add>
        <ip_registration_newsletter></ip_registration_newsletter>
        <last_passwd_gen></last_passwd_gen>
        <secure_key></secure_key>
        <deleted></deleted>
        <passwd>123456789</passwd>
        <lastname>Presta</lastname>
        <firstname>Presta</firstname>
        <email>presta@mail.com</email>
        <id_gender></id_gender>
        <birthday></birthday>
        <newsletter></newsletter>
        <optin></optin>
        <website></website>
        <company></company>
        <siret></siret>
        <ape></ape>
        <outstanding_allow_amount></outstanding_allow_amount>
        <show_public_prices></show_public_prices>
        <id_risk></id_risk>
        <max_payment_days></max_payment_days>
        <active></active>
        <note></note>
        <active>1</active>
        <is_guest></is_guest>
        <id_shop></id_shop>
        <id_shop_group></id_shop_group>
        <date_add></date_add>
        <date_upd></date_upd>
        <reset_password_token></reset_password_token>
        <reset_password_validity></reset_password_validity>
        <associations>
            <groups>
                <group>
                    <id></id>
                </group>
            </groups>
        </associations>
    </customer>
</prestashop>

 

×
×
  • Create New...