Delete contact from a group with Oracle
Delete a contact of a group with Oracle
Oracle : METHODS
SMS
- Send SMS with Oracle
- Send SMS from template with Oracle
- Send bulk SMS with Oracle
- Send Bulk SMS from template with Oracle
- Get SMS delivery status with Oracle
TEXT-TO-SPEECH
- Send voice text-to-speech with Oracle
- Send voice from template with Oracle
- Send bulk voice with Oracle
- Send bulk voice from template with Oracle
- Get voice delivery status with Oracle
- Send Email with Oracle
- Send Email from template with Oracle
- Send bulk Email with Oracle
- Send Bulk Email from template with Oracle
- Get email delivery status with Oracle
SOCIAL NETWORKS
GROUPS
- Create group with Oracle
- Get group field list with Oracle
- Add a field to a group with Oracle
- Delete a field from a group with Oracle
- Delete a contact from a group
- Assing country to e group with Oracle
- Get group contact list with Oracle
- Add contact to a group with Oracle
- Modify contact of a group with Oracle
- Delete contact of a group with Oracle
HLR
COUNTRIES
EVENTS
USER
TEMPLATES
OTP (ONE-TIME PASSWORD)
declare
l_url varchar2(200) := 'http://www.afilnet.com/api/http/?class=group'||'&'||'method=deletecontact'||'&'||'user=user'||'&'||'password=password'||'&'||'idgroup=1000'||'&'||'idcontact=1000';
l_req utl_http.req;
l_resp utl_http.resp;
l_text varchar2(32767);
begin
l_req := utl_http.begin_request(l_url);
l_resp := utl_http.get_response(l_req);
begin
loop
utl_http.read_text(l_resp, l_text, 32766);
dbms_output.put_line(l_text);
end loop;
exception
when utl_http.end_of_body then
utl_http.end_response(l_resp);
end;
end;
Removes a contact from the group
Parameter | Description | Compulsory / Optional |
---|---|---|
class=group | Class requested: Class to which the request is made | Compulsory |
method=deletecontact | Class method requested: Method of the class to which the request is made | Compulsory |
user | User and e-mail of your Afilnet account | Compulsory |
password | Password of your Afilnet account | Compulsory |
idgroup | Group ID | Compulsory |
idcontact | Contact ID | Compulsory |
When you make requests you will receive the following fields:
- status
- result (if status=success), here you will receive the following values:
- No additional values will be sent to you
- error (if status=error), here you will receive the error code
The possible error codes are listed below
Code | Description |
---|---|
MISSING_USER | User or email not included |
MISSING_PASSWORD | Password not included |
MISSING_CLASS | Class not included |
MISSING_METHOD | Method not included |
MISSING_COMPULSORY_PARAM | Compulsory parameter not included |
INCORRECT_USER_PASSWORD | Incorrect user or password |
INCORRECT_CLASS | Incorrect class |
INCORRECT_METHOD | Incorrect method |
NOT_ACCESS_TO_GROUP | You are not allowed into the indicated group |
Parameters:
- class: group
- method: deletecontact
- user: user
- password: password
- idgroup: 1000
- idcontact: 1000
Request:
https://www.afilnet.com/api/http/?class=group&method=deletecontact&user=user&password=password&idgroup=1000&idcontact=1000