GET {orgno}/profile/contactinformation

Get a list of contacts for an organization. The contacts are the people Altinn will send notifications to when the organization receives messages.

Request Information

Parameters

NameDescriptionAdditional information
orgno The organization number of the unit to look at.

Define this parameter in the request URI.

Response Information

The list of contacts.

Response body formats

application/hal+xml

Sample:

Sample not available.

application/hal+json

Sample:
{
  "_links": {
    "self": {
      "href": "sample string 42"
    }
  },
  "_embedded": {
    "sample string 23": [
      {
        "Id": 1,
        "Name": "sample string 88",
        "Email": "sample string 70",
        "MobileNumber": "sample string 59",
        "IsSelectedForNotification": true
      },
      {
        "Id": 1,
        "Name": "sample string 88",
        "Email": "sample string 70",
        "MobileNumber": "sample string 59",
        "IsSelectedForNotification": true
      },
      {
        "Id": 1,
        "Name": "sample string 88",
        "Email": "sample string 70",
        "MobileNumber": "sample string 59",
        "IsSelectedForNotification": true
      }
    ]
  }
}