Edit

Share via


embeddedSIMActivationCodePool resource type

Namespace: microsoft.graph

Important: Microsoft supports Intune /beta APIs, but they are subject to more frequent change. Microsoft recommends using version v1.0 when possible. Check an API's availability in version v1.0 using the Version selector.

Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.

A pool represents a group of embedded SIM activation codes.

Methods

Properties

Property Type Description
id String Unique identifier for the embedded SIM activation code pool. System generated value assigned when created.
displayName String The admin defined name of the embedded SIM activation code pool.
createdDateTime DateTimeOffset The time the embedded SIM activation code pool was created. Generated service side.
modifiedDateTime DateTimeOffset The time the embedded SIM activation code pool was last modified. Updated service side.
activationCodes embeddedSIMActivationCode collection The activation codes which belong to this pool. This navigation property is used to post activation codes to Intune but cannot be used to read activation codes from Intune.
activationCodeCount Int32 The total count of activation codes which belong to this pool.

Relationships

Relationship Type Description
assignments embeddedSIMActivationCodePoolAssignment collection Navigational property to a list of targets to which this pool is assigned.
deviceStates embeddedSIMDeviceState collection Navigational property to a list of device states for this pool.

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.embeddedSIMActivationCodePool",
  "id": "String (identifier)",
  "displayName": "String",
  "createdDateTime": "String (timestamp)",
  "modifiedDateTime": "String (timestamp)",
  "activationCodes": [
    {
      "@odata.type": "microsoft.graph.embeddedSIMActivationCode",
      "integratedCircuitCardIdentifier": "String",
      "matchingIdentifier": "String",
      "smdpPlusServerAddress": "String"
    }
  ],
  "activationCodeCount": 1024
}