GET api/cogeo/numautoarchive/{idExpressionNumeroAutoArchive}

Récupère un modele de numérotation des archives en fonction de son identifiant unique.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
idExpressionNumeroAutoArchive

integer

Required

Body Parameters

None.

Response Information

Resource Description

Retourne un ApiExpressionNumeroAutoArchive

ApiExpressionNumeroAutoArchive
NameDescriptionTypeAdditional information
IdExpressionNumeroAutoArchive

integer

None.

Expression

string

None.

DernierNumero

integer

None.

DerniereDate

date

None.

ParametreStockage

string

None.

IdsSitesPrincipaux

Collection of integer

None.

IdsSitesDependants

Collection of integer

None.

Response Formats

application/json, text/json

Sample:
{
  "IdExpressionNumeroAutoArchive": 1,
  "Expression": "sample string 2",
  "DernierNumero": 3,
  "DerniereDate": "2025-12-10T14:58:28.5808491+01:00",
  "ParametreStockage": "sample string 5",
  "IdsSitesPrincipaux": [
    1,
    2
  ],
  "IdsSitesDependants": [
    1,
    2
  ]
}

application/xml, text/xml

Sample:
<ApiExpressionNumeroAutoArchive xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ModuleoCommunServeur.Models.Api">
  <DernierNumero>3</DernierNumero>
  <DerniereDate>2025-12-10T14:58:28.5808491+01:00</DerniereDate>
  <Expression>sample string 2</Expression>
  <IdExpressionNumeroAutoArchive>1</IdExpressionNumeroAutoArchive>
  <IdsSitesDependants xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </IdsSitesDependants>
  <IdsSitesPrincipaux xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </IdsSitesPrincipaux>
  <ParametreStockage>sample string 5</ParametreStockage>
</ApiExpressionNumeroAutoArchive>

multipart/form-data

Sample:
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="IdExpressionNumeroAutoArchive"

1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Expression"

sample string 2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="DernierNumero"

3
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="DerniereDate"

2025-12-10T14:58:28.5808491+01:00
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="ParametreStockage"

sample string 5
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="IdsSitesPrincipaux"

System.Collections.Generic.HashSet`1[System.Int32]
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="IdsSitesDependants"

System.Collections.Generic.HashSet`1[System.Int32]
--MultipartDataMediaFormatterBoundary1q2w3e--