> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Default Project Member

> Loading default values into a new ProjectMember.

NsApiSlow threshold: 2000 ms.



## OpenAPI

````yaml /openapi/agent/openapi-v3-ProjectAgent.json post /api/v1/Agents/Project/CreateDefaultProjectMember
openapi: 3.0.0
info:
  version: v1-Agents
  title: SuperOffice Agent API v1
  description: SuperOffice Agent API - ProjectAgent
  contact:
    name: SuperOffice DevNet
    url: https://docs.superoffice.com/en/api/index.html
    email: sdk@superoffice.com
servers:
  - url: http://localhost:56350
  - url: https://localhost:56350
security: []
tags: []
externalDocs:
  description: >-
    The SuperOffice DevNet Community has more documentation, examples, and
    discussion forums.
  url: https://community.superoffice.com/en/developer/
paths:
  /api/v1/Agents/Project/CreateDefaultProjectMember:
    post:
      tags:
        - Project_Agent
      summary: Create Default Project Member
      description: |-
        Loading default values into a new ProjectMember.

        NsApiSlow threshold: 2000 ms.
      operationId: v1ProjectAgent_CreateDefaultProjectMember
      parameters:
        - name: Accept-Language
          in: header
          description: >-
            Convert string references and multi-language values into a specified
            language (iso2) code.
          required: false
          schema:
            type: string
        - name: SO-Language
          in: header
          description: >-
            Convert string references and multi-language values into a specified
            language (iso2) code. Overrides Accept-Language value.
          required: false
          schema:
            type: string
        - name: SO-Culture
          in: header
          description: >-
            Number, date formatting in a specified culture (iso2 language) code.
            Partially overrides SO-Language/Accept-Language value. Ignored if no
            Language set.
          required: false
          schema:
            type: string
        - name: SO-TimeZone
          in: header
          description: >-
            Specify the timezone code that you would like date/time responses
            converted to.
          required: false
          schema:
            type: string
        - name: SO-AppToken
          in: header
          description: >-
            The application token that identifies the partner app. Used when
            calling Online WebAPI from a server.
          required: false
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuperOffice.CRM.Services.ProjectMember'
            text/json:
              schema:
                $ref: '#/components/schemas/SuperOffice.CRM.Services.ProjectMember'
            application/xml:
              schema:
                $ref: '#/components/schemas/SuperOffice.CRM.Services.ProjectMember'
            text/xml:
              schema:
                $ref: '#/components/schemas/SuperOffice.CRM.Services.ProjectMember'
            application/json-patch+json:
              schema:
                $ref: '#/components/schemas/SuperOffice.CRM.Services.ProjectMember'
            application/merge-patch+json:
              schema:
                $ref: '#/components/schemas/SuperOffice.CRM.Services.ProjectMember'
      security:
        - SuperOffice_Password: []
          SuperId_Authentication: []
components:
  schemas:
    SuperOffice.CRM.Services.ProjectMember:
      description: "A person can be a member of multiple projects, with a different comment and member type in each project.\r\n<para />\r\nCarrier object for ProjectMember.\r\nServices for the ProjectMember Carrier is available from the <see cref=\"T:SuperOffice.CRM.Services.IProjectAgent\">Project Agent</see>."
      type: object
      properties:
        ProjectmemberId:
          format: int32
          description: Primary key
          type: integer
        ContactId:
          format: int32
          description: Contact ID of person who is the project member
          type: integer
        ProjectId:
          format: int32
          description: Parent project - the project this project member belongs to.
          type: integer
        ContactName:
          description: Contact name
          type: string
        ContactDepartment:
          description: Contact department
          type: string
        ProjectName:
          description: Name of the project this project member belongs to.
          type: string
        EmailId:
          format: int32
          description: The person's email address id
          type: integer
        EmailAddress:
          description: The e-mail address
          type: string
        CountryId:
          format: int32
          description: Country
          type: integer
        Firstname:
          description: First name
          type: string
        MiddleName:
          description: Middle name or 'van' etc.
          type: string
        Lastname:
          description: Last name
          type: string
        PersonId:
          format: int32
          description: The person's id - primary key
          type: integer
        Mrmrs:
          description: e.g. Mrs, Dr, Ms.
          type: string
        ProjectMemberTypeName:
          description: 'The projectmembers type name: ''secretary'', ''member'', etc.'
          type: string
        Phone:
          description: Phone number
          type: string
        PhoneId:
          format: int32
          description: The phone id
          type: integer
        ProjectMemberTypeId:
          format: int32
          description: "ProjectMember Type Id - from the ProjectMemberType list. \r\n<para>Use MDO List name \"PMembType\" to get list items.</para>"
          type: integer
        EmailAddressName:
          description: The e-mail address description
          type: string
        Comment:
          description: Comment text on the project membership
          type: string
        FullName:
          description: >-
            The person's full name localized to the current culture/country. 
            (internal name used in clients for employees)
          type: string
        Registered:
          format: date-time
          description: The date and time when the project member was registered  in UTC.
          type: string
        Updated:
          format: date-time
          description: The date and time when the project member was last updated  in UTC.
          type: string
        EventParticipantStatus:
          description: Reserved field for Lyyti event participants.
          enum:
            - NotAnEvent
            - NotReacted
            - ReactedNo
            - ReactedYes
            - Show
            - NoShow
          type: string
        TableRight:
          $ref: '#/components/schemas/SuperOffice.CRM.Security.TableRight'
        FieldProperties:
          description: >-
            Field property dictionary mapping field names to field access
            rights.
          type: object
          additionalProperties:
            $ref: '#/components/schemas/SuperOffice.CRM.Security.FieldProperty'
    SuperOffice.CRM.Security.TableRight:
      description: "Wraps a table right together with an explanatory reason.\r\nCode can indicate why access is restricted."
      type: object
      properties:
        Mask:
          type: string
        Reason:
          type: string
    SuperOffice.CRM.Security.FieldProperty:
      description: >-
        Class holding properties like field length, field type about a field in
        the carrier.
      type: object
      properties:
        FieldRight:
          $ref: '#/components/schemas/SuperOffice.CRM.Security.FieldRight'
        FieldType:
          type: string
        FieldLength:
          format: int32
          description: ''
          type: integer
    SuperOffice.CRM.Security.FieldRight:
      description: "Wraps the field right together with an explanatory reason.\r\nAlso adds logical operators to the field rights so that they can be easily combined."
      type: object
      properties:
        Mask:
          type: string
        Reason:
          type: string

````

## Related topics

- [Default Project Member](/en/api/reference/restful/rest/projectmember/default-project-member.md)
- [NSProjectAgent](/en/automation/crmscript/reference/CRMScript.NetServer.NSProjectAgent.md)
- [SuperOffice.WebApi.Agents.ProjectAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.ProjectAgent.md)
- [SuperOffice.WebApi.Agents.IProjectAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.IProjectAgent.md)
- [Create Default Project Entity](/en/api/reference/restful/agent/project_agent/create-default-project-entity.md)
- [Create document mailing to project members](/en/project/learn/project-members/create-mailing.md)
