Alert.png The wiki is deprecated and due to be decommissioned by the end of September 2022.
The content is being migrated to other supports, new updates will be ignored and lost.
If needed you can get in touch with EGI SDIS team using operations @ egi.eu.

Difference between revisions of "GOCDB/PI/get egee contacts method"

From EGIWiki
< GOCDB‎ | PI
Jump to navigation Jump to search
m (Created page with '== Method: get_egee_contacts == {| {{egi-table}} |- | '''Description''' || Returns a list of contacts for staff that have a role a EGI (formerly EGEE) level |- | '''Protection …')
 
 
(11 intermediate revisions by 5 users not shown)
Line 1: Line 1:
== Method: get_egee_contacts ==
{{Template:Op menubar}}
{{Template:GOCDB_menubar}}
{{TOC_right}}
[[Category:GOCDB]]
== Method: <strike>get_egee_contacts</strike> ==
* '''This method is now deprecated - use get_project_contacts instead'''


{| {{egi-table}}  
{| {{egi-table}}  
|-
|-
| '''Description''' || Returns a list of contacts for staff that have a role a EGI (formerly EGEE) level
| '''Description''' || <strike>Returns a list of contacts for staff that have a role a EGI (formerly EGEE) level</strike>
|-
|-
| '''Protection Level''' || Protected (level 2)  
| '''Protection Level''' || Protected (level 2)  
Line 10: Line 15:
=== Entry point ===
=== Entry point ===


https://goc.gridops.org/gocdbpi/private/?method=get_egee_contacts
<strike>https://goc.egi.eu/gocdbpi/private/?method=get_egee_contacts</strike>


=== parameters ===
=== parameters ===
Line 16: Line 21:
no parameters
no parameters


<!--- Removed from V5
=== XML schema ===
=== XML schema ===


https://goc.gridops.org/gocdbpi/private/?method=get_egee_contacts&output=xmlschema
https://goc.egi.eu/gocdbpi/private/?method=get_egee_contacts&output=xmlschema
-->


=== Output Example ===
=== Output Example ===
Line 53: Line 60:
   </CONTACT>
   </CONTACT>
  </results>
  </results>
[[GOCDB/PI/Technical_Documentation|Back to GOCDB technical Documentation main page]]

Latest revision as of 15:37, 5 November 2013

Main EGI.eu operations services Support Documentation Tools Activities Performance Technology Catch-all Services Resource Allocation Security


GOC DB menu: Home Documentation Index


Method: get_egee_contacts

  • This method is now deprecated - use get_project_contacts instead
Description Returns a list of contacts for staff that have a role a EGI (formerly EGEE) level
Protection Level Protected (level 2)

Entry point

https://goc.egi.eu/gocdbpi/private/?method=get_egee_contacts

parameters

no parameters


Output Example

<?xml version="1.0"?>
<results>
 <CONTACT USER_ID="999" PRIMARY_KEY="45177G0">
  <FORENAME>Foo</FORENAME>
  <SURNAME>Bar</SURNAME>
  <TITLE>Dr</TITLE>
  <DESCRIPTION>this is our NGI manager</DESCRIPTION>
  <EMAIL>foo.bar@ngi.com</EMAIL>
  <TEL>999</TEL>
  <WORKING_HOURS_START>10:00</WORKING_HOURS_START>
  <WORKING_HOURS_END>19:00</WORKING_HOURS_END>
  <CERTDN>
   /C=ZZ/O=certif/OU=users/OU=ngi.com/CN=Foo Bar
  </CERTDN>
  <ROLE_NAME>CIC staff</ROLE_NAME>
 </CONTACT>
 <CONTACT USER_ID="666" PRIMARY_KEY="12345G0">
  <FORENAME>Ferdinand</FORENAME>
  <SURNAME>Satan</SURNAME>
  <TITLE>Mr</TITLE>
  <DESCRIPTION>new staff</DESCRIPTION>
  <EMAIL>ferdinand@ngi.com</EMAIL>
  <TEL>666</TEL>
  <WORKING_HOURS_START>00:00</WORKING_HOURS_START>
  <WORKING_HOURS_END>23:59</WORKING_HOURS_END>
  <CERTDN>
   /C=ZZ/O=certif/OU=users/OU=ngi.com/CN=Ferdinand Satan
  </CERTDN>
  <ROLE_NAME>C-COD Administrator</ROLE_NAME>
 </CONTACT>
</results>

Back to GOCDB technical Documentation main page